Skip to content

Commit b03d7c2

Browse files
committed
update
Signed-off-by: FL03 <jo3mccain@icloud.com>
1 parent 565a275 commit b03d7c2

5 files changed

Lines changed: 248 additions & 248 deletions

File tree

.gitignore

Lines changed: 114 additions & 113 deletions
Original file line numberDiff line numberDiff line change
@@ -1,113 +1,114 @@
1-
# Artifacts
2-
3-
**/.artifacts/data/
4-
**/.docker/data/
5-
6-
## Caches
7-
8-
**/.cache/
9-
10-
# Configuration Files
11-
12-
**/config.*
13-
**/*.config.*
14-
15-
**/*.env
16-
**/*.env.*
17-
18-
### Exceptions
19-
!**/default.config.*
20-
!**/*.config.cjs
21-
!**/*.config.js
22-
!**/*.config.mjs
23-
!**/config.py
24-
!**/config.rs
25-
26-
!**/example.env.*
27-
!**/*.env.example
28-
!**/*.env.default
29-
30-
# Dev
31-
32-
### Idea
33-
34-
**/.idea/
35-
36-
### vscode
37-
38-
**/.vscode/*
39-
40-
!**/.vscode/settings.json
41-
42-
# File Extensions
43-
44-
**/*.lock
45-
**/*.lock.*
46-
47-
**/*-lock.*
48-
49-
**/*.log
50-
**/*.log.*
51-
52-
### Data Files
53-
54-
**/*.csv
55-
**/*.csv.*
56-
57-
**/*.db
58-
**/*.db.*
59-
60-
**/*.db-*.*
61-
62-
**/*.zip
63-
**/*.zip.*
64-
65-
## Rust
66-
**/debug/
67-
**/target/
68-
69-
**/*.bk
70-
**/*.bk.*
71-
72-
!**/Cargo.lock
73-
74-
## Node
75-
**/build/
76-
**/debug/
77-
**/dist/
78-
**/node_modules/
79-
80-
### SvelteKit
81-
**/__sapper__/
82-
**/.DS_STORE/
83-
**/.svelte-kit/
84-
85-
## Python
86-
**/__pycache__/
87-
**/.pytest_cache/
88-
**/venv/
89-
90-
**/*.egg
91-
**/*.egg.*
92-
93-
**/*.egg-info
94-
95-
**/*.pyc
96-
**/*.pyc.*
97-
98-
**/*.pyo
99-
**/*.pyo.*
100-
101-
**/*.pyz
102-
**/*.pyz.*
103-
104-
**/*.pyzw
105-
**/*.pyzw.*
106-
107-
**/*.whl
108-
**/*.whl.*
109-
110-
## Operating Systems
111-
112-
### Windows (WSL2)
113-
**/*:Zone.Identifier
1+
# A general .gitignore file for various programming languages and frameworks.
2+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
3+
# See https://www.toptal.com/developers/gitignore for a custom .gitignore file.
4+
5+
**/.artifacts/data/
6+
**/.docker/data/
7+
8+
**/.cache/
9+
**/.cache-*/
10+
**/.direnv/*
11+
**/.temp/
12+
**/.tmp/
13+
14+
### Configuration Files
15+
**/.config/*.config.*
16+
17+
!**/default.config.
18+
!**/example.config.*
19+
20+
### dotenv
21+
**/*.env
22+
**/*.env.*
23+
24+
!**/example.env.*
25+
!**/*.env.example
26+
!**/*.env.default
27+
28+
### JetBrains IntelliJ
29+
**/.idea/
30+
31+
*.iml
32+
*.iws
33+
34+
### Visual Studio Code
35+
**/.vscode/*
36+
37+
!**/.vscode/settings.json
38+
39+
### Windows (WSL2)
40+
*:Zone.Identifier
41+
42+
### File Extensions
43+
*.csv
44+
*.csv.*
45+
46+
*.db
47+
*.db.*
48+
*.db-*.*
49+
50+
*.log
51+
*.log.*
52+
53+
*-log.*
54+
55+
*.sqlite
56+
57+
*.zip
58+
*.zip.*
59+
60+
## Language Specific
61+
62+
### Rust
63+
**/debug/
64+
**/target/
65+
66+
*.bk
67+
*.bk.*
68+
69+
!**/Cargo.lock
70+
71+
### NodeJS
72+
**/build/
73+
**/debug/
74+
**/dist/
75+
**/node_modules/
76+
77+
**/*-debug.log*
78+
**/yarn-debug.log*
79+
80+
### Python
81+
**/__pycache__/
82+
**/.pytest_cache/
83+
**/venv/
84+
85+
**/*.egg
86+
**/*.egg.*
87+
88+
**/*.egg-info
89+
90+
**/*.pyc
91+
**/*.pyc.*
92+
93+
**/*.pyo
94+
**/*.pyo.*
95+
96+
**/*.pyz
97+
**/*.pyz.*
98+
99+
**/*.pyzw
100+
**/*.pyzw.*
101+
102+
**/*.whl
103+
**/*.whl.*
104+
105+
## Frameworks
106+
107+
### Next.js
108+
**/.next/
109+
**/.vercel/
110+
111+
### SvelteKit / Sapper
112+
**/__sapper__/
113+
**/.DS_STORE/
114+
**/.svelte-kit/

Cargo.lock

Lines changed: 8 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ scsys-traits = { default-features = false, path = "traits", version = "0.3.2" }
4545
scsys-util = { default-features = false, path = "utils", version = "0.3.2" }
4646

4747
# custom
48-
contained = { default-features = false, features = ["derive", "macros"], version = "0.2.1" }
48+
contained = { default-features = false, features = ["derive", "macros"], version = "0.2.2" }
4949
# concurrency & parallelism
5050
# crossbeam = { default-features = false, version = "0.8" }
5151
rayon = { default-features = false, version = "1" }

0 commit comments

Comments
 (0)