[package] name = "vcsgraph" version = "0.2.0" authors = [ "Pierre-Yves David ", "Laurent Bulteau ", "Pacien TRAN-GIRARD ", ] repository = "https://foss.heptapod.net/mercurial/vcsgraph" description = "A library to perform various computation of a version control graph" license = "GPL-2.0-or-later" include = ["/src", "/README.md"] edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] name = "vcsgraph" [dependencies] hex = "0.4.2" rand = "0.7" # for analytics sha-1 = "0.9.6" structopt = { version = "0.3", optional = true } [features] cli = ["structopt"] [[bin]] name = "testing" path = "src/testing/main.rs" required-features = ["cli"] [[bin]] name = "analytics" path = "src/analytics/main.rs" required-features = ["cli"]