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.3 kB 44 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-atproto = { workspace = true } 18knot-runtime = { workspace = true } 19knot-ssh = { workspace = true } 20knot-edge = { workspace = true } 21knot-secrets = { workspace = true } 22knot-xrpc = { workspace = true } 23tikv-jemallocator = { workspace = true } 24tikv-jemalloc-ctl = { workspace = true } 25knot-events = { workspace = true } 26knot-maintenance = { workspace = true } 27knot-postreceive = { workspace = true } 28knot-messages = { workspace = true } 29axum = { workspace = true } 30tower-http = { workspace = true, features = ["fs"] } 31tokio = { workspace = true } 32tokio-util = { workspace = true } 33anyhow = { workspace = true } 34base64 = { workspace = true } 35zeroize = { workspace = true } 36rustix = { workspace = true } 37tracing = { workspace = true } 38tracing-subscriber = { workspace = true } 39 40[dev-dependencies] 41confique = { workspace = true } 42http = { workspace = true } 43walkdir = { workspace = true } 44tempfile = { workspace = true }