This repository has no description
0

Configure Feed

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

core / knot2 / crates / knot-pack / Cargo.toml
1.6 kB 53 lines
1[package] 2name = "knot-pack" 3version = "2.0.0" 4edition.workspace = true 5rust-version.workspace = true 6license.workspace = true 7 8[dependencies] 9knot-types = { workspace = true } 10knot-git = { workspace = true } 11knot-index = { workspace = true } 12knot-runtime = { workspace = true } 13knot-resource = { workspace = true } 14knot-cache = { workspace = true } 15knot-edge = { workspace = true } 16knot-cob = { workspace = true } 17knot-cobs = { workspace = true } 18knot-messages = { workspace = true } 19url = { workspace = true } 20gix = { workspace = true } 21gix-pack = { workspace = true } 22gix-hash = { workspace = true } 23scc = { workspace = true } 24gix-packetline = { workspace = true } 25flate2 = { workspace = true } 26axum = { workspace = true } 27tokio = { workspace = true } 28tokio-stream = { workspace = true } 29thiserror = { workspace = true } 30walkdir = { workspace = true } 31tempfile = { workspace = true } 32 33[dev-dependencies] 34knot-fixtures = { workspace = true } 35tempfile = { workspace = true } 36flate2 = { workspace = true } 37gix-hash = { workspace = true } 38tracing-subscriber = { workspace = true } 39tikv-jemallocator = { workspace = true } 40knot-resource = { workspace = true } 41proptest = { workspace = true } 42tower = { version = "0.5", features = ["util"] } 43http-body-util = "0.1" 44knot-bench = { workspace = true } 45knot-maintenance = { workspace = true } 46quinn = { workspace = true } 47h3 = { workspace = true } 48h3-quinn = { workspace = true } 49rustls = { workspace = true } 50rcgen = { workspace = true } 51tokio-util = { workspace = true } 52http = { workspace = true } 53bytes = { workspace = true }