Now let's take a silly one
0

Configure Feed

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

at main 1.0 kB View raw
1[package] 2name = "knot-sim" 3version = { workspace = true } 4edition = { workspace = true } 5rust-version = { workspace = true } 6license = { workspace = true } 7publish = false 8 9[[bin]] 10name = "knot-sim" 11path = "src/main.rs" 12 13[dependencies] 14knot-types = { workspace = true } 15knot-runtime = { workspace = true } 16knot-git = { workspace = true } 17knot-index = { workspace = true } 18knot-pack = { workspace = true } 19knot-atproto = { workspace = true } 20knot-secrets = { workspace = true } 21knot-xrpc = { workspace = true } 22knot-events = { workspace = true } 23knot-cob = { workspace = true } 24knot-cobs = { workspace = true } 25knot-maintenance = { workspace = true } 26axum = { workspace = true } 27tower = { workspace = true } 28http = { workspace = true } 29bytes = { workspace = true } 30tokio = { workspace = true } 31url = { workspace = true } 32serde = { workspace = true } 33serde_json = { workspace = true } 34base64 = { workspace = true } 35futures = { workspace = true } 36tempfile = { workspace = true } 37 38[dev-dependencies] 39knot-ssh = { workspace = true }