[package] name = "rvcs" version = "0.1.0" authors = ["Wafelack "] edition = "2018" description = "A rusty version control system." license = "GPL-3.0" repository = "https://github.com/wafelack/rvcs" documentation = "https://github.com/wafelack/rvcs" keywords = ["version-control", "vcs", "rvcs"] categories = ["command-line-tools"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] name = "rvcs_lib" path = "src/lib.rs" [[bin]] name = "rvcs" path = "src/bin.rs" [dependencies] sha2 = "0.9.3" # hashing clap = "2.33.3" # arg parsing flate2 = "1.0.20" # compression chrono = "0.4.19" # date