mirror of
https://github.com/runebaas/MemosFS.git
synced 2025-06-20 10:54:18 +02:00
Initial commit
This commit is contained in:
commit
deb3191bec
7 changed files with 2784 additions and 0 deletions
24
Cargo.toml
Normal file
24
Cargo.toml
Normal file
|
@ -0,0 +1,24 @@
|
|||
[package]
|
||||
name = "memosfs"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
# Fuse
|
||||
fuser = { version = "0.15", features = ["serde"] }
|
||||
|
||||
# Platform
|
||||
nix = { version = "0.30", features = ["user"] }
|
||||
|
||||
# Error Handling
|
||||
anyhow = "1"
|
||||
|
||||
# Data
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
short-uuid = "0.2"
|
||||
uuid = "1"
|
||||
chrono = { version = "0.4", features = ["serde"]}
|
||||
moka = { version = "0.12", features = ["sync"] }
|
||||
|
||||
# Web
|
||||
reqwest = { version = "0.12", features = ["blocking", "json"] }
|
Loading…
Add table
Add a link
Reference in a new issue