chore: scaffold alpha-id crate skeleton

This commit is contained in:
2026-05-18 16:12:59 +02:00
parent bb5123aa4a
commit 70be6449db
19 changed files with 2743 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
[package]
name = "alpha-id"
version = "0.1.0"
edition = "2021"
[lib]
name = "alpha_id"
path = "src/lib.rs"
[[bin]]
name = "alpha-id"
path = "src/bin/alpha_id.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
quick-xml = "0.36"
tantivy = "0.22"
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls"] }
sha2 = "0.10"
rand = "0.8"
thiserror = "1"
[dev-dependencies]
tiny_http = "0.12"
tempfile = "3"