docs: README, CI workflow, CLAW.md guidance, assets, and contributing guide

This commit is contained in:
Sisyphus
2026-04-01 20:36:39 +09:00
parent 8b0bd55350
commit 5de4d7ec8b
17 changed files with 2804 additions and 0 deletions

22
rust/Cargo.toml Normal file
View File

@@ -0,0 +1,22 @@
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT"
publish = false
[workspace.dependencies]
serde_json = "1"
[workspace.lints.rust]
unsafe_code = "forbid"
[workspace.lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
module_name_repetitions = "allow"
missing_panics_doc = "allow"
missing_errors_doc = "allow"