diff --git a/.gitignore b/.gitignore index 52fa494..1ec1e3c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ # Generated by Cargo # will have compiled files and executables /target/ +target # Remove Cargo.lock from gitignore if creating an executable, leave it for libraries # More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html diff --git a/Cargo.toml b/Cargo.toml index be3e9ba..16610cc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "btm" -version = "0.15.0" +version = "1.0.0" edition = "2021" keywords = ["vcs", "snapshot", "zfs", "btrfs"] license = "MIT" @@ -10,7 +10,7 @@ homepage = "https://github.com/rust-util-collections/btm" repository = "https://github.com/rust-util-collections/btm" [dependencies] -ruc = { version = "6.0", features = ["cmd","uau"]} +ruc = { version = "7.0", features = ["cmd","uau"]} serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" nix = { version = "0.29", features = ["fs"] }