Add a linux lib for fuse filesystem

This commit is contained in:
oupson 2022-05-31 22:36:13 +02:00
parent cdfddc6eae
commit d319b0641e
Signed by: oupson
GPG Key ID: 3BD88615552EFCB7
4 changed files with 14 additions and 1 deletions

4
Cargo.lock generated
View File

@ -512,6 +512,10 @@ dependencies = [
"thiserror",
]
[[package]]
name = "rustcryptfs-linux"
version = "0.1.0"
[[package]]
name = "ryu"
version = "1.0.10"

View File

@ -1,5 +1,6 @@
[workspace]
members = [
"rustcryptfs",
"rustcryptfs-lib"
"rustcryptfs-lib",
"rustcryptfs-linux"
]

View File

@ -0,0 +1,8 @@
[package]
name = "rustcryptfs-linux"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

View File