mirror of
https://github.com/SlimeVR/SlimeVR-Server.git
synced 2026-04-06 02:01:58 +02:00
* Now using cargo workspaces, means you can `cargo run` from toplevel. * Command execution now is cwd independent. + Added pretty_env_logger which lets us leverage log crate for easy logging. * Windows now uses the win32job crate to ensure that all child processes will properly terminate when the parent process does. + Added empty rustfmt.toml to ensure everyone uses default rustfmt settings. * Gitignore now ignores more stuff.
27 lines
336 B
Plaintext
27 lines
336 B
Plaintext
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
|
|
# JS/TS dependencies
|
|
/node_modules
|
|
/.pnp
|
|
.pnp.js
|
|
|
|
# testing
|
|
/coverage
|
|
|
|
# Build artifacts
|
|
/build
|
|
/target
|
|
|
|
# misc
|
|
.DS_Store
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
*.log
|