chore: scaffold alpha-id crate skeleton
This commit is contained in:
+28
@@ -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"
|
||||
Reference in New Issue
Block a user