20 lines
502 B
TOML
20 lines
502 B
TOML
[package]
|
|
name = "acrate-nodeinfo"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
acrate-hostmeta = { path = "../acrate-hostmeta" }
|
|
log = "0.4.22"
|
|
reqwest = { version = "0.12.9", features = ["json", "stream"] }
|
|
serde = { version = "1.0.214", features = ["derive"] }
|
|
serde_json = "1.0.132"
|
|
thiserror = "2.0.3"
|
|
|
|
[dev-dependencies]
|
|
pretty_env_logger = "0.5.0"
|
|
tokio = { version = "1.41.1", features = ["macros", "rt-multi-thread"] }
|
|
tokio-test = "0.4.4"
|
|
|
|
[lints.clippy]
|
|
tabs-in-doc-comments = "allow"
|