mirror of
https://github.com/tlsnotary/tlsn.git
synced 2026-01-09 14:48:13 -05:00
* feat: harness * delete tests.rs build artifact * fix binary path * seconds -> milliseconds * update lock * add empty tests module * rustfmt * ToString -> Display * output tests module into build artifacts * clippy * rustfmt
34 lines
896 B
TOML
34 lines
896 B
TOML
[package]
|
|
name = "tlsn-server-fixture"
|
|
publish = false
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
axum = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
futures = { workspace = true }
|
|
futures-rustls = { workspace = true }
|
|
hyper = { workspace = true }
|
|
hyper-util = { workspace = true, features = ["full"] }
|
|
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
|
|
tokio-util = { workspace = true, features = ["compat", "io"] }
|
|
tower-service = { version = "0.3" }
|
|
serde_json = { workspace = true }
|
|
tlsn-server-fixture-certs = { workspace = true }
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
tower-http = { version = "0.6.5", features = ["trace"] }
|
|
|
|
[[bin]]
|
|
name = "tlsn-server-fixture"
|
|
path = "bin/main.rs"
|
|
|
|
[dev-dependencies]
|
|
axum-test = { version = "16.2.0" }
|
|
http-body-util = { workspace = true }
|
|
tower = { version = "0.5.1" }
|