29 lines
579 B
TOML
29 lines
579 B
TOML
[package]
|
|
name = "olivefs_common"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
# Robustness
|
|
log = "0.4.14"
|
|
env_logger = "0.9.0"
|
|
anyhow = "1.0.52"
|
|
|
|
# Asynchronous
|
|
tokio = { version = "1.15.0", features = ["full"] }
|
|
|
|
# Serialisation
|
|
serde = { version = "1.0.133", features = ["derive"] }
|
|
serde_bare = "0.5.0"
|
|
toml = "0.5.8"
|
|
|
|
# Networking
|
|
quinn = { version = "0.8.0", features = [] }
|
|
|
|
# Compression and Encryption
|
|
zstd = "0.9.2"
|
|
|
|
fuser = { version = "0.10.0", optional = true }
|