Skip to content

Commit

Permalink
Add base and passthroughfs crate
Browse files Browse the repository at this point in the history
  • Loading branch information
zyfjeff committed Jul 17, 2023
1 parent 3195766 commit 35e262b
Show file tree
Hide file tree
Showing 22 changed files with 6,410 additions and 10 deletions.
267 changes: 266 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 10 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,21 @@ edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[lib]
name = "fuse"
path = "src/lib.rs"

[dependencies]
remain = "0.2"
thiserror = "1.0"
libc = "0.2"
bitflags = "2.2"
enumn = "0.1"
zerocopy = "*"
libc = "0.2"
bitflags = "2.2"
enumn = "0.1"
zerocopy = "*"
log = "0.4"
crossbeam-utils = "0.8"
crossbeam-utils = "0.8"
cfg-if = "1.0.0"
tracing = { path = "tracing" }

[workspace]

members = [
"tracing"
]
members = ["tracing", "base", "passthroughfs"]
16 changes: 16 additions & 0 deletions base/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[package]
name = "base"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
libc = "0.2"
serde = { version = "1", features = [ "derive" ] }
serde_json = "*"
cfg-if = "1.0.0"
thiserror = "1.0.43"
tempfile = "3"
smallvec = "1.11.0"
base_event_token_derive = { path = "base_event_token_derive", version = "*" }
Loading

0 comments on commit 35e262b

Please sign in to comment.