mirror of
https://github.com/LORDBABUINO/stealth.git
synced 2026-06-11 06:43:31 -07:00
21 lines
465 B
TOML
21 lines
465 B
TOML
[workspace]
|
|
members = [
|
|
"crates/stealth-app",
|
|
"crates/stealth-bitcoincore",
|
|
"crates/stealth-core",
|
|
]
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
edition = "2024"
|
|
license = "MIT"
|
|
version = "0.1.0"
|
|
|
|
[workspace.dependencies]
|
|
axum = "0.8"
|
|
clap = { version = "4.5", features = ["derive", "env"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
thiserror = "2.0"
|
|
tokio = { version = "1.48", features = ["macros", "rt-multi-thread", "signal"] }
|