Skip to content

Commit 6d541b6

Browse files
Maidang1liuwei.felix
authored and
liuwei.felix
committed
chore: refactor cargo workspace
1 parent abc77ca commit 6d541b6

File tree

15 files changed

+650
-11884
lines changed

15 files changed

+650
-11884
lines changed

.gitignore

+196
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,198 @@
11
node_modules
22
*.node
3+
# Created by https://www.toptal.com/developers/gitignore/api/node
4+
# Edit at https://www.toptal.com/developers/gitignore?templates=node
5+
6+
### Node ###
7+
# Logs
8+
logs
9+
*.log
10+
npm-debug.log*
11+
yarn-debug.log*
12+
yarn-error.log*
13+
lerna-debug.log*
14+
15+
# Diagnostic reports (https://nodejs.org/api/report.html)
16+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
17+
18+
# Runtime data
19+
pids
20+
*.pid
21+
*.seed
22+
*.pid.lock
23+
24+
# Directory for instrumented libs generated by jscoverage/JSCover
25+
lib-cov
26+
27+
# Coverage directory used by tools like istanbul
28+
coverage
29+
*.lcov
30+
31+
# nyc test coverage
32+
.nyc_output
33+
34+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
35+
.grunt
36+
37+
# Bower dependency directory (https://bower.io/)
38+
bower_components
39+
40+
# node-waf configuration
41+
.lock-wscript
42+
43+
# Compiled binary addons (https://nodejs.org/api/addons.html)
44+
build/Release
45+
46+
# Dependency directories
47+
node_modules/
48+
jspm_packages/
49+
50+
# TypeScript v1 declaration files
51+
typings/
52+
53+
# TypeScript cache
54+
*.tsbuildinfo
55+
56+
# Optional npm cache directory
57+
.npm
58+
59+
# Optional eslint cache
60+
.eslintcache
61+
62+
# Microbundle cache
63+
.rpt2_cache/
64+
.rts2_cache_cjs/
65+
.rts2_cache_es/
66+
.rts2_cache_umd/
67+
68+
# Optional REPL history
69+
.node_repl_history
70+
71+
# Output of 'npm pack'
72+
*.tgz
73+
74+
# Yarn Integrity file
75+
.yarn-integrity
76+
77+
# dotenv environment variables file
78+
.env
79+
.env.test
80+
81+
# parcel-bundler cache (https://parceljs.org/)
82+
.cache
83+
84+
# Next.js build output
85+
.next
86+
87+
# Nuxt.js build / generate output
88+
.nuxt
89+
dist
90+
91+
# Gatsby files
92+
.cache/
93+
# Comment in the public line in if your project uses Gatsby and not Next.js
94+
# https://nextjs.org/blog/next-9-1#public-directory-support
95+
# public
96+
97+
# vuepress build output
98+
.vuepress/dist
99+
100+
# Serverless directories
101+
.serverless/
102+
103+
# FuseBox cache
104+
.fusebox/
105+
106+
# DynamoDB Local files
107+
.dynamodb/
108+
109+
# TernJS port file
110+
.tern-port
111+
112+
# Stores VSCode versions used for testing VSCode extensions
113+
.vscode-test
114+
115+
# End of https://www.toptal.com/developers/gitignore/api/node
116+
117+
# Created by https://www.toptal.com/developers/gitignore/api/macos
118+
# Edit at https://www.toptal.com/developers/gitignore?templates=macos
119+
120+
### macOS ###
121+
# General
122+
.DS_Store
123+
.AppleDouble
124+
.LSOverride
125+
126+
# Icon must end with two
127+
Icon
128+
129+
# Thumbnails
130+
._*
131+
132+
# Files that might appear in the root of a volume
133+
.DocumentRevisions-V100
134+
.fseventsd
135+
.Spotlight-V100
136+
.TemporaryItems
137+
.Trashes
138+
.VolumeIcon.icns
139+
.com.apple.timemachine.donotpresent
140+
141+
# Directories potentially created on remote AFP share
142+
.AppleDB
143+
.AppleDesktop
144+
Network Trash Folder
145+
Temporary Items
146+
.apdisk
147+
148+
### macOS Patch ###
149+
# iCloud generated files
150+
*.icloud
151+
152+
# End of https://www.toptal.com/developers/gitignore/api/macos
153+
154+
# Created by https://www.toptal.com/developers/gitignore/api/windows
155+
# Edit at https://www.toptal.com/developers/gitignore?templates=windows
156+
157+
### Windows ###
158+
# Windows thumbnail cache files
159+
Thumbs.db
160+
Thumbs.db:encryptable
161+
ehthumbs.db
162+
ehthumbs_vista.db
163+
164+
# Dump file
165+
*.stackdump
166+
167+
# Folder config file
168+
[Dd]esktop.ini
169+
170+
# Recycle Bin used on file shares
171+
$RECYCLE.BIN/
172+
173+
# Windows Installer files
174+
*.cab
175+
*.msi
176+
*.msix
177+
*.msm
178+
*.msp
179+
180+
# Windows shortcuts
181+
*.lnk
182+
183+
# End of https://www.toptal.com/developers/gitignore/api/windows
184+
185+
#Added by cargo
186+
187+
/target
188+
# Cargo.lock
189+
190+
.pnp.*
191+
.yarn/*
192+
!.yarn/patches
193+
!.yarn/plugins
194+
!.yarn/releases
195+
!.yarn/sdks
196+
!.yarn/versions
197+
198+
*.farm

0 commit comments

Comments
 (0)