mirror of
https://github.com/logos-storage/mix-hidden-services.git
synced 2026-06-13 09:09:25 +00:00
34 lines
869 B
TOML
34 lines
869 B
TOML
[package]
|
|
name = "mix-hs"
|
|
version = "0.42.0"
|
|
edition = "2024"
|
|
rust-version = "1.89"
|
|
license = "MIT OR Apache-2.0"
|
|
description = "Hidden services protocol over Mix"
|
|
keywords = ["tor", "cryptography", "mix"]
|
|
categories = ["cryptography"]
|
|
|
|
[dependencies]
|
|
aes = "0.8.4"
|
|
getrandom = "0.4.2"
|
|
hmac = "0.13.0-pre.4"
|
|
curve25519-dalek = "5.0.0-pre.6"
|
|
ctr = "0.9.2"
|
|
digest = "0.11"
|
|
ed25519-dalek = { version = "3.0.0-pre.7", features = ["batch", "hazmat"] }
|
|
rand_core = "0.10"
|
|
serde = { version = "1.0.103", features = ["derive"] }
|
|
sha2 = "0.11"
|
|
signature = "3"
|
|
thiserror = "2"
|
|
x25519-dalek = { version = "3.0.0-pre.6", features = ["static_secrets"] }
|
|
zeroize = "1.5"
|
|
itertools = "0.14.0"
|
|
data-encoding = "2.7.0"
|
|
humantime = "2.3.0"
|
|
|
|
[dev-dependencies]
|
|
hex = "0.4"
|
|
hex-literal = "1.0"
|
|
tor-llcrypto = { version = "0.42.0", features = ["cvt-x25519", "hsv3-client", "hsv3-service"]}
|