From 599214b1182a3a4df11aefae7284e3284a40d51f Mon Sep 17 00:00:00 2001 From: oupson Date: Mon, 10 Oct 2022 15:12:40 +0200 Subject: [PATCH] Add informations in manifests --- Cargo.lock | 2 +- rustcryptfs-fuse/Cargo.toml | 1 + rustcryptfs-lib/Cargo.toml | 3 +++ rustcryptfs-lib/README.md | 3 +++ rustcryptfs-mount/Cargo.toml | 1 + rustcryptfs/Cargo.toml | 8 +++++--- 6 files changed, 14 insertions(+), 4 deletions(-) create mode 100644 rustcryptfs-lib/README.md diff --git a/Cargo.lock b/Cargo.lock index ff6880d..85b18bf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -525,7 +525,7 @@ dependencies = [ [[package]] name = "rustcryptfs" -version = "0.0.1" +version = "0.1.0" dependencies = [ "anyhow", "clap", diff --git a/rustcryptfs-fuse/Cargo.toml b/rustcryptfs-fuse/Cargo.toml index 8d04943..33cc433 100644 --- a/rustcryptfs-fuse/Cargo.toml +++ b/rustcryptfs-fuse/Cargo.toml @@ -3,6 +3,7 @@ name = "rustcryptfs-fuse" version = "0.1.0" edition = "2021" license = "MIT OR Apache-2.0" +repository = "https://github.com/oupson/rustcryptfs/" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/rustcryptfs-lib/Cargo.toml b/rustcryptfs-lib/Cargo.toml index 42c8663..3a96b31 100644 --- a/rustcryptfs-lib/Cargo.toml +++ b/rustcryptfs-lib/Cargo.toml @@ -3,6 +3,9 @@ name = "rustcryptfs-lib" version = "0.1.0" edition = "2021" license = "MIT OR Apache-2.0" +readme = "README.md" +description = "A library that implement gocryptfs-related operations" +repository = "https://github.com/oupson/rustcryptfs/" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/rustcryptfs-lib/README.md b/rustcryptfs-lib/README.md new file mode 100644 index 0000000..c4694d3 --- /dev/null +++ b/rustcryptfs-lib/README.md @@ -0,0 +1,3 @@ +# rustcryptfs-lib + +An implementation of gocryptfs. \ No newline at end of file diff --git a/rustcryptfs-mount/Cargo.toml b/rustcryptfs-mount/Cargo.toml index 4c4ec3d..00f85d8 100644 --- a/rustcryptfs-mount/Cargo.toml +++ b/rustcryptfs-mount/Cargo.toml @@ -3,6 +3,7 @@ name = "rustcryptfs-mount" version = "0.1.0" edition = "2021" license = "MIT OR Apache-2.0" +repository = "https://github.com/oupson/rustcryptfs/" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/rustcryptfs/Cargo.toml b/rustcryptfs/Cargo.toml index 33c48b0..8807c91 100644 --- a/rustcryptfs/Cargo.toml +++ b/rustcryptfs/Cargo.toml @@ -1,8 +1,10 @@ [package] name = "rustcryptfs" -version = "0.0.1" +version = "0.1.0" edition = "2021" license = "MIT OR Apache-2.0" +description = "A gocryptfs implementation in rust" +repository = "https://github.com/oupson/rustcryptfs/" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -16,7 +18,7 @@ serde = { version = "1.0.136", features = ["derive"] } serde_json = "1.0.78" clap = { version = "3.1.18", features = ["derive"] } log = "0.4.17" -rustcryptfs-lib = { path = "../rustcryptfs-lib" } +rustcryptfs-lib = { path = "../rustcryptfs-lib", version = "0.1.0" } env_logger = "0.9.0" rpassword = "7.0.0" -rustcryptfs-mount = { path = "../rustcryptfs-mount", optional = true } \ No newline at end of file +rustcryptfs-mount = { path = "../rustcryptfs-mount", optional = true, version = "0.1.0" } \ No newline at end of file