diff options
author | clarkzjw <[email protected]> | 2023-07-26 12:37:38 -0700 |
---|---|---|
committer | clarkzjw <[email protected]> | 2023-07-26 12:37:38 -0700 |
commit | af2f09ea4cbb97d3ee91e30bb58e85508989d63a (patch) | |
tree | 671ead9c450a0abf71efc00ba1f2966ae6e60e02 /.gitignore | |
parent | f847de64eb8f724fa512801b43a26522afff61ae (diff) | |
download | photo-af2f09ea4cbb97d3ee91e30bb58e85508989d63a.tar.gz |
add example from https://github.com/LemmyNet/activitypub-federation-rust
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -98,3 +98,18 @@ lerna-debug.log | |||
98 | 98 | ||
99 | # System Files | 99 | # System Files |
100 | Thumbs.db | 100 | Thumbs.db |
101 | |||
102 | # Generated by Cargo | ||
103 | # will have compiled files and executables | ||
104 | debug/ | ||
105 | target/ | ||
106 | |||
107 | # Remove Cargo.lock from gitignore if creating an executable, leave it for libraries | ||
108 | # More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html | ||
109 | Cargo.lock | ||
110 | |||
111 | # These are backup files generated by rustfmt | ||
112 | **/*.rs.bk | ||
113 | |||
114 | # MSVC Windows builds of rustc generate these, which store debugging information | ||
115 | *.pdb | ||