mirror of
https://github.com/tlsnotary/notary-server.git
synced 2026-01-07 19:53:55 -05:00
46 lines
1.7 KiB
TOML
46 lines
1.7 KiB
TOML
[package]
|
|
name = "notary-server"
|
|
version = "0.1.0-alpha.2"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.67"
|
|
async-tungstenite = { version = "0.22.2", features = ["tokio-native-tls"] }
|
|
axum = { version = "0.6.18", features = ["ws"] }
|
|
axum-core = "0.3.4"
|
|
axum-macros = "0.3.8"
|
|
base64 = "0.21.0"
|
|
eyre = "0.6.8"
|
|
futures = "0.3"
|
|
futures-util = "0.3.28"
|
|
http = "0.2.9"
|
|
hyper = { version = "0.14", features = ["client", "http1", "server", "tcp"] }
|
|
opentelemetry = { version = "0.19" }
|
|
p256 = "0.13"
|
|
rustls = { version = "0.21" }
|
|
rustls-pemfile = { version = "1.0.2" }
|
|
serde = { version = "1.0.147", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
serde_yaml = "0.9.21"
|
|
sha1 = "0.10"
|
|
structopt = "0.3.26"
|
|
thiserror = "1"
|
|
tlsn-notary = { git = "https://github.com/tlsnotary/tlsn", tag = "v0.1.0-alpha.2" }
|
|
tlsn-tls-core = { git = "https://github.com/tlsnotary/tlsn", tag = "v0.1.0-alpha.2" }
|
|
tokio = { version = "1", features = ["full"] }
|
|
tokio-rustls = { version = "0.24.1" }
|
|
tokio-util = { version = "0.7", features = ["compat"] }
|
|
tower = { version = "0.4.12", features = ["make"] }
|
|
tracing = "0.1"
|
|
tracing-opentelemetry = "0.19"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
uuid = { version = "1.4.1", features = ["v4", "fast-rng"] }
|
|
ws_stream_tungstenite = { version = "0.10.0", features = ["tokio_io"] }
|
|
|
|
[dev-dependencies]
|
|
# specify vendored feature to use statically linked copy of OpenSSL
|
|
hyper-tls = { version = "0.5.0", features = ["vendored"] }
|
|
tls-server-fixture = { git = "https://github.com/tlsnotary/tlsn", tag = "v0.1.0-alpha.2" }
|
|
tlsn-prover = { git = "https://github.com/tlsnotary/tlsn", tag = "v0.1.0-alpha.2" }
|
|
tokio-native-tls = { version = "0.3.1", features = ["vendored"] }
|