This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / knot2 / crates / knot-runtime / Cargo.toml
598 B 24 lines
1[package] 2name = "knot-runtime" 3version = "2.0.0" 4edition.workspace = true 5rust-version.workspace = true 6license.workspace = true 7 8[dependencies] 9knot-types = { workspace = true } 10serde = { workspace = true } 11reqwest = { workspace = true } 12http = { workspace = true } 13url = { workspace = true } 14bytes = { workspace = true } 15getrandom = { workspace = true } 16k256 = { workspace = true } 17thiserror = { workspace = true } 18futures = { workspace = true } 19tokio = { workspace = true } 20hickory-resolver = { workspace = true } 21 22[dev-dependencies] 23futures = { workspace = true } 24tokio = { workspace = true }