This repository has no description
0

Configure Feed

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

core / knot2 / crates / knot-migrate / Cargo.toml
1.0 kB 35 lines
1[package] 2name = "knot-migrate" 3version = "2.0.0" 4edition = { workspace = true } 5rust-version = { workspace = true } 6license = { workspace = true } 7publish = false 8 9[[bin]] 10name = "knot-migrate" 11path = "src/main.rs" 12 13[dependencies] 14knot-types = { workspace = true } 15knot-runtime = { workspace = true } 16knot-git = { workspace = true } 17knot-cob = { workspace = true } 18knot-cobs = { workspace = true } 19knot-config = { workspace = true } 20knot-secrets = { workspace = true } 21rusqlite = { version = "0.38", features = ["bundled"] } 22rustix = { workspace = true, features = ["fs"] } 23ssh-key = { version = "0.7.0-rc.10", default-features = false, features = ["std", "ed25519", "ecdsa"] } 24chrono = { workspace = true } 25walkdir = { workspace = true } 26serde = { workspace = true } 27serde_json = { workspace = true } 28url = { workspace = true } 29base64 = { workspace = true } 30thiserror = { workspace = true } 31zeroize = { workspace = true } 32 33[dev-dependencies] 34knot-index = { workspace = true } 35tempfile = { workspace = true }