diff --git a/Cargo.lock b/Cargo.lock index 0aa59b6..bb07f59 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -276,7 +276,7 @@ dependencies = [ [[package]] name = "datman" -version = "0.0.0" +version = "0.1.0" dependencies = [ "anyhow", "arc-interner", diff --git a/datman/Cargo.toml b/datman/Cargo.toml index 0fb2225..e86db23 100644 --- a/datman/Cargo.toml +++ b/datman/Cargo.toml @@ -1,8 +1,12 @@ [package] name = "datman" -version = "0.0.0" +version = "0.1.0" authors = ["Olivier 'reivilibre' "] edition = "2018" +repository = "https://bics.ga/reivilibre/yama" +license = "GPL-3.0-or-later" + +description = "A chunked and deduplicated backup system using Yama" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -22,6 +26,7 @@ byteorder = "1" termion = "1.5.6" glob = "0.3.0" humansize = "1.1.1" -yama = { path = "../yama" } chrono = "0.4.19" -itertools = "0.10.1" \ No newline at end of file +itertools = "0.10.1" + +yama = { path = "../yama", version = "0.4.0" }