30 lines
844 B
TOML
30 lines
844 B
TOML
[package]
|
|
name = "libepf"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_arrays = "0.1" # TODO: Remove. Pending on serde supporting const generics
|
|
rmp-serde = "1"
|
|
pem = "2"
|
|
hex = "0.4"
|
|
sha2 = "0.10"
|
|
ed25519-dalek = { version = "2.0.0-rc.2", features = ["rand_core"] }
|
|
rand = "0.8"
|
|
x25519-dalek = { version = "2.0.0-rc.2", features = ["static_secrets"] }
|
|
chrono = "0.4"
|
|
tokio = { version = "1.28", features = ["io-util"] }
|
|
async-trait = "0.1"
|
|
chacha20poly1305 = "0.10"
|
|
log = "0.4"
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1.28", features = ["io-util", "macros", "rt-multi-thread", "net"] }
|
|
tcp-test = "0.1"
|
|
futures = "0.3"
|
|
simple_logger = "4.1"
|
|
hex-literal = "0.4.1"
|
|
serial_test = "2.0.0" |