This repository has no description
0

Configure Feed

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

core / knot2 / crates / knot-server / Cargo.toml
1.4 kB 45 lines
1[package] 2name = "knot-server" 3version = "2.0.0" 4edition.workspace = true 5rust-version.workspace = true 6license.workspace = true 7 8[dependencies] 9knot-config = { workspace = true } 10knot-types = { workspace = true } 11knot-git = { workspace = true } 12knot-lfs = { workspace = true } 13knot-pack = { workspace = true } 14knot-resource = { workspace = true } 15knot-cache = { workspace = true } 16knot-index = { workspace = true } 17knot-keyfill = { workspace = true } 18knot-atproto = { workspace = true } 19knot-runtime = { workspace = true } 20knot-ssh = { workspace = true } 21knot-edge = { workspace = true } 22knot-secrets = { workspace = true } 23knot-xrpc = { workspace = true } 24tikv-jemallocator = { workspace = true } 25tikv-jemalloc-ctl = { workspace = true } 26knot-events = { workspace = true } 27knot-maintenance = { workspace = true } 28knot-postreceive = { workspace = true } 29knot-messages = { workspace = true } 30axum = { workspace = true } 31tower-http = { workspace = true, features = ["fs"] } 32tokio = { workspace = true } 33tokio-util = { workspace = true } 34anyhow = { workspace = true } 35base64 = { workspace = true } 36zeroize = { workspace = true } 37rustix = { workspace = true } 38tracing = { workspace = true } 39tracing-subscriber = { workspace = true } 40 41[dev-dependencies] 42confique = { workspace = true } 43http = { workspace = true } 44walkdir = { workspace = true } 45tempfile = { workspace = true }