Olivier 'reivilibre
300baef5c5
All checks were successful
continuous-integration/drone the build was successful
48 lines
1.1 KiB
TOML
48 lines
1.1 KiB
TOML
[package]
|
|
name = "olivefsd"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
## Robustness
|
|
# Disable trace! in release mode.
|
|
log = { version = "0.4.14", features = ["release_max_level_debug"] }
|
|
env_logger = "0.9.0"
|
|
anyhow = "1.0.52"
|
|
bare-metrics-recorder = "0.1.0"
|
|
tracing = "0.1.29"
|
|
tracing-futures = { version = "0.2.5", features = ["tokio"] }
|
|
path-absolutize = "3.0.11"
|
|
|
|
## Asynchronous
|
|
tokio = { version = "1.15.0", features = ["full"] }
|
|
futures-util = "0.3.19"
|
|
dashmap = "5.0.0"
|
|
|
|
## Serialisation
|
|
serde = { version = "1.0.133", features = ["derive"] }
|
|
serde_bare = "0.5.0"
|
|
toml = "0.5.8"
|
|
clap = { version = "3.0.7", features = ["derive"] }
|
|
|
|
## Networking
|
|
quinn = { version = "0.8.0", features = [] }
|
|
|
|
## Compression and Encryption
|
|
zstd = "0.9.2"
|
|
rustls = "0.20.2"
|
|
rcgen = { version = "0.8.14", features = ["x509-parser"] }
|
|
x509-parser = "0.12.0"
|
|
|
|
## Collections
|
|
# consider also: sharded-slab (concurrent access), thunderdome (generational indices)
|
|
slab = "0.4.5"
|
|
|
|
## System
|
|
libc = "0.2.112"
|
|
|
|
## Common
|
|
olivefs_common = { path = "../olivefs_common" }
|