1234567891011121314151617181920212223242526272829303132 |
- [package]
- name = "lox_cli"
- version = "0.1.0"
- edition = "2021"
- [dependencies]
- lox-library = { git = "https://gitlab.torproject.org/vecna/lox.git", version = "0.1.0" }
- lox_utils = { git = "https://gitlab.torproject.org/vecna/lox.git", version = "0.1.0" }
- curve25519-dalek = { package = "curve25519-dalek-ng", version = "3", default-features = false, features = ["serde", "std"] }
- ed25519-dalek = { version = "1", features = ["serde"] }
- getopts = "0.2"
- serde = "1"
- bincode = "1"
- serde_json = "1.0"
- serde_with = "1.9.1"
- time = "0.2"
- tokio = { version = "1", features = ["full"] }
- hyper = { version = "0.14.28", features = ["full"] }
- async-trait = "0.1.68"
- [features]
- default = ["u64_backend"]
- u32_backend = ["curve25519-dalek/u32_backend"]
- u64_backend = ["curve25519-dalek/u64_backend"]
- simd_backend = ["curve25519-dalek/simd_backend"]
- [dev-dependencies]
- array-bytes = "6.2.0"
- sha1 = "0.10"
|