.gitignore 388 Bytes
Newer Older
Hero Bird's avatar
Hero Bird committed
1
2
# Ignore build artifacts from the local tests sub-crate.
/target/
3
4
/core/target/
/derive/target/
5
/examples/**/target/
Hero Bird's avatar
Hero Bird committed
6
7
8
9
10
11
12
13
/design/

# Ignore backup files creates by cargo fmt.
**/*.rs.bk

# Remove Cargo.lock when creating an executable, leave it for libraries
# More information here http://doc.crates.io/guide.html#cargotoml-vs-cargolock
Cargo.lock
Hero Bird's avatar
Hero Bird committed
14
15
16

# Ignore VS Code artifacts.
**/.vscode/**