Add informations in manifests

This commit is contained in:
oupson 2022-10-10 15:12:40 +02:00
parent 648bf74571
commit 599214b118
Signed by: oupson
GPG Key ID: 3BD88615552EFCB7
6 changed files with 14 additions and 4 deletions

2
Cargo.lock generated
View File

@ -525,7 +525,7 @@ dependencies = [
[[package]]
name = "rustcryptfs"
version = "0.0.1"
version = "0.1.0"
dependencies = [
"anyhow",
"clap",

View File

@ -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

View File

@ -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

View File

@ -0,0 +1,3 @@
# rustcryptfs-lib
An implementation of gocryptfs.

View File

@ -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

View File

@ -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 }
rustcryptfs-mount = { path = "../rustcryptfs-mount", optional = true, version = "0.1.0" }