Skip to content

Commit 6c5faca

Browse files
authored
Merge pull request #77 from rainshowerLabs/0.4.0
Blutgang 0.4.0 Arianrhod
2 parents 4d7fe9b + 63ec00a commit 6c5faca

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+8453
-2551
lines changed

.cargo/audit.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Doesn't work in the sandbox
2+
[yanked]
3+
enabled = false # Warn for yanked crates in Cargo.lock (default: true)
4+
update_index = false # Auto-update the crates.io index (default: true)
File renamed without changes.

.deny.toml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[bans]
2+
multiple-versions = 'allow' # allow multiple versions of the same license
3+
4+
[licenses]
5+
private = { ignore = true } # ignore workspace crates that won't be published
6+
allow = [
7+
"AGPL-1.0",
8+
"Apache-2.0",
9+
"BSD-2-Clause",
10+
"BSD-3-Clause",
11+
"CC0-1.0",
12+
"ISC",
13+
"MIT",
14+
"OpenSSL",
15+
"Unicode-3.0",
16+
"Zlib",
17+
]

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ jobs:
1919
- name: Build
2020
run: cargo build --verbose
2121
- name: Run tests
22-
run: cargo test --verbose
22+
run: cargo test --verbose -- --test-threads=1

.gitignore

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
/target
2+
*result
3+
/.nixos-test-history
4+
*.qcow2
25
/.venv
36
/blutgang-cache*
47
/benchmarks.txt
5-
/config.toml
68
/.DS_Store
7-
/config.toml
89
/.env
910
/default.sled
1011

1112
# AI stuff
1213
*CLAUDE*
13-
*claude*
14+
*claude*

.rust-toolchain.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[toolchain]
2+
channel = "nightly-2025-09-23"
3+
components = ["rust-src", "rustfmt-preview", "rust-analyzer", "clippy"]

.rustfmt.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
force_multiline_blocks = true
2+
imports_indent = "Block"
3+
imports_layout = "Vertical"

.taplo.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[formatting]
2+
reorder_keys = false
3+
4+
[[rule]]
5+
include = ["**/Cargo.toml"]
6+
keys = ["dependencies"]
7+
8+
[rule.formatting]
9+
reorder_keys = true

0 commit comments

Comments
 (0)