/ Cargo.toml
Cargo.toml
1 [package] 2 name = "ambient-ci" 3 version = "0.13.1" 4 authors = ["Lars Wirzenius <liw@liw.fi>"] 5 description = "A continuous integration engine" 6 homepage = "https://ambient.liw.fi/" 7 repository = "https://app.radicle.xyz/nodes/radicle.liw.fi/rad:zwPaQSTBX8hktn22F6tHAZSFH2Fh" 8 license = "GPL-3.0-or-later" 9 keywords = ["ci"] 10 categories = ["development-tools::testing"] 11 edition = "2021" 12 default-run = "ambient" 13 rust-version = "1.85" 14 15 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 16 17 [dependencies] 18 anyhow = "1.0.75" 19 byte-unit = { version = "5.1.4", features = ["serde"] } 20 bytesize = "2.0.1" 21 clap = { version = "4.4.7", features = ["derive"] } 22 clingwrap = "0.5.0" 23 directories = "6.0.0" 24 hex = "0.4.3" 25 html-page = "0.5.0" 26 indicatif = { version = "0.18.3", features = ["improved_unicode"] } 27 reqwest = { version = "0.12.23", features = ["blocking", "http2", "rustls-tls"], default-features = false } 28 serde = { version = "1.0.190", features = ["derive"] } 29 serde_json = "1.0.132" 30 serde_norway = "0.9.42" 31 sha2 = "0.10.8" 32 tempfile = "3.8.1" 33 thiserror = "2.0.12" 34 time = { version = "0.3.37", features = ["formatting", "macros"] } 35 walkdir = "2.4.0"