[package] name = "nancy" version = "0.1.0" edition = "2021" authors = ["Jacob Hinkle "] description = "Composable provenance tracking for scientific data analysis" repository = "https://git.jhink.org/jacob/nancy" readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] name = "nancy" path = "src/lib.rs" [[bin]] name = "nancy" path = "src/main.rs" [dependencies] blake3 = "1.3.1" clap = { version = "4.0.14", features = ["derive"] } derive_more = "0.99.17" env_logger = "0.9.1" jwalk = "0.6.0" log = "0.4.17" once_cell = "1.15.0" rayon = "1.5.3" ring = "0.16.20" rusqlite = { version = "0.28.0", features = ["uuid"] } rusqlite_migration = "1.0.0" uuid = { version = "1.2.1", features = ["v4"] }