-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 1.23 KB
/
Cargo.toml
File metadata and controls
29 lines (26 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "nts-pool-ke"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/pendulum-project/nts-pool"
homepage = "https://github.com/pendulum-project/nts-pool"
readme = "./README.md"
description = "NTS pool key exchange server"
publish = false
rust-version = "1.71" # MSRV
[package.metadata.cargo-udeps.ignore]
normal = [ "ntp-proto", "rustls-platform-verifier", "rustls-pemfile2", "rustls23", "serde", "tokio-rustls", "toml", "tracing", "tracing-subscriber" ]
[dependencies]
tokio = { version = "1.32", features = ["rt-multi-thread", "io-util", "fs", "net", "macros", "time" ] }
toml = { version = ">=0.6.0,<0.9.0", default-features = false, features = ["parse"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.0", default-features = false, features = ["std", "fmt", "ansi"] }
rustls23 = { package = "rustls", version = "0.23.16", features = ["logging", "std", "tls12"] }
rustls-platform-verifier = "0.5.0"
serde = { version = "1.0.145", features = ["derive"] }
ntp-proto = { version = "1.5.0", default-features = false, features = ["__internal-api", "nts-pool" ] }
tokio-rustls = { version = "0.26.0", features = ["logging", "tls12"] }
[[bin]]
name = "nts-pool-ke"
path = "bin/nts-pool-ke.rs"