[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] clap = { version = "4.0.14", features = ["derive"] } derive_more = "0.99.17" env_logger = "0.9.1" log = "0.4.17" once_cell = "1.15.0" rusqlite = { version = "0.28.0", features = ["uuid"] } rusqlite_migration = "1.0.0" sha2 = "0.10.6" uuid = { version = "1.2.1", features = ["v4"] }