Skip to content

Commit c47f14c

Browse files
authored
Merge pull request #38 from hanabi1224/up-prost
chore: upgrade prost
2 parents 952bcbc + 3fd3d5c commit c47f14c

3 files changed

Lines changed: 254 additions & 274 deletions

File tree

.gitignore

Lines changed: 67 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,68 @@
1-
/target
1+
# Created by https://www.toptal.com/developers/gitignore/api/rust,osx,visualstudiocode
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=rust,osx,visualstudiocode
3+
4+
### OSX ###
5+
# General
6+
.DS_Store
7+
.AppleDouble
8+
.LSOverride
9+
10+
# Icon must end with two \r
11+
Icon
12+
13+
14+
# Thumbnails
15+
._*
16+
17+
# Files that might appear in the root of a volume
18+
.DocumentRevisions-V100
19+
.fseventsd
20+
.Spotlight-V100
21+
.TemporaryItems
22+
.Trashes
23+
.VolumeIcon.icns
24+
.com.apple.timemachine.donotpresent
25+
26+
# Directories potentially created on remote AFP share
27+
.AppleDB
28+
.AppleDesktop
29+
Network Trash Folder
30+
Temporary Items
31+
.apdisk
32+
33+
### Rust ###
34+
# Generated by Cargo
35+
# will have compiled files and executables
36+
debug/
37+
target/
38+
39+
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
40+
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
41+
# Cargo.lock
42+
43+
# These are backup files generated by rustfmt
244
**/*.rs.bk
45+
46+
# MSVC Windows builds of rustc generate these, which store debugging information
47+
*.pdb
48+
49+
### VisualStudioCode ###
50+
.vscode/*
51+
!.vscode/settings.json
52+
!.vscode/tasks.json
53+
!.vscode/launch.json
54+
!.vscode/extensions.json
55+
!.vscode/*.code-snippets
56+
57+
# Local History for Visual Studio Code
58+
.history/
59+
60+
# Built Visual Studio Code Extensions
61+
*.vsix
62+
63+
### VisualStudioCode Patch ###
64+
# Ignore all local history of files
65+
.history
66+
.ionide
67+
68+
# End of https://www.toptal.com/developers/gitignore/api/rust,osx,visualstudiocode

0 commit comments

Comments
 (0)