-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (45 loc) · 1.02 KB
/
Copy pathCargo.toml
File metadata and controls
50 lines (45 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[package]
name = "argosfs"
version = "0.1.0"
edition = "2021"
rust-version = "1.87"
license = "Apache-2.0"
description = "ArgosFS self-driving erasure-coded root filesystem"
authors = ["FWERKOR"]
repository = "https://github.com/fwerkor/argosfs"
homepage = "https://github.com/fwerkor/argosfs"
[lib]
name = "argosfs"
path = "src/lib.rs"
[[bin]]
name = "argosfs"
path = "src/bin/argosfs.rs"
[dependencies]
anyhow = "1.0"
argon2 = "0.5"
base64 = "0.23"
blake3 = "1.5"
chacha20poly1305 = "0.11"
clap = { version = "4.5", features = ["derive"] }
fuser_crate = { package = "fuser", version = "0.18", features = ["libfuse3"] }
hex = "0.4"
io-uring = "0.7"
libc = "0.2"
lz4_flex = "0.14"
memmap2 = "0.9.11"
parking_lot = "0.12"
rand = "0.10"
erase = "4.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.11"
thiserror = "2.0"
uuid = { version = "1.23", features = ["v4", "serde"] }
walkdir = "2.5"
zstd = "0.13"
[dev-dependencies]
tempfile = "3.10"
[profile.release]
lto = "thin"
codegen-units = 1
strip = "symbols"