[package] name = "zephyrfs-node" version = "0.1.0" edition = "2021" authors = ["espadonne (mfw)"] license = "MIT" description = "Core P2P node implementation for ZephyrFS distributed storage" repository = "https://github.com/ZephyrFS/zephyrfs-node" [dependencies] # LibP2P networking stack libp2p = { version = "0.54", features = [ "tcp", "mdns", "noise", "yamux", "kad", "ping", "identify", "gossipsub", "dcutr", "tokio", "macros" ]} tokio = { version = "1.39", features = ["full"] } # Storage and database rocksdb = { version = "0.24", default-features = false, features = ["snappy", "lz4", "zstd"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" serde_yaml = "0.9" bincode = "1.3" tempfile = "3.8" # Cryptography and hashing blake3 = "1.5" sha2 = "0.10" rand = "0.8" hex = "0.4" # Phase 2: Advanced cryptography ring = "0.17" # AES-256-GCM, SHA-256, secure crypto primitives scrypt = "0.11" # Key derivation from passwords zeroize = "1.7" # Secure memory clearing constant_time_eq = "0.3" # Timing-safe comparisons rand_core = "0.6" # Cryptographic randomness # TLS and networking security rustls = "0.23" # TLS 1.3 implementation rustls-pemfile = "2.0" # Certificate management # Protocol buffers prost = "0.13" prost-types = "0.13" tonic = "0.12" # Logging and tracing tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } # Error handling anyhow = "1.0" thiserror = "1.0" # Configuration config = "0.14" clap = { version = "4.5", features = ["derive"] } # Async utilities futures = "0.3" async-trait = "0.1" # Coordinator integration uuid = { version = "1.6", features = ["v4", "serde"] } chrono = { version = "0.4", features = ["serde"] } hyper = "1.0" [build-dependencies] tonic-build = "0.12" [[bin]] name = "zephyrfs-node" path = "src/main.rs" [profile.release] codegen-units = 1 lto = true panic = "abort"