This repository has no description
0

Configure Feed

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

core / knot2 / crates / knot-ssh / Cargo.toml
1.2 kB 42 lines
1[package] 2name = "knot-ssh" 3version = "2.0.0" 4edition.workspace = true 5rust-version.workspace = true 6license.workspace = true 7 8[dependencies] 9knot-types = { workspace = true } 10knot-runtime = { workspace = true } 11knot-resource = { workspace = true } 12knot-git = { workspace = true } 13knot-lfs = { workspace = true } 14knot-pack = { workspace = true } 15knot-index = { workspace = true } 16knot-acl = { workspace = true } 17knot-atproto = { workspace = true } 18knot-cob = { workspace = true } 19knot-cobs = { workspace = true } 20knot-events = { workspace = true } 21knot-maintenance = { workspace = true } 22knot-postreceive = { workspace = true } 23knot-receive = { workspace = true } 24knot-messages = { workspace = true } 25tracing = { workspace = true } 26russh = "0.61" 27tokio = { workspace = true } 28tokio-util = { workspace = true, features = ["io-util"] } 29futures = { workspace = true } 30thiserror = { workspace = true } 31 32[dev-dependencies] 33knot-fixtures = { workspace = true } 34tempfile = { workspace = true } 35serde_json = { workspace = true } 36sha2 = { workspace = true } 37http = { workspace = true } 38bytes = { workspace = true } 39url = { workspace = true } 40russh = "0.61" 41tikv-jemallocator = { workspace = true } 42tikv-jemalloc-ctl = { workspace = true }