Files
firezone/rust/http-test-server/Cargo.toml
Jamil 7e533c42f8 refactor: Split releases for Clients and Gateways (#5287)
- Removes version numbers from infra components (elixir/relay)
- Removes version bumping from Rust workspace members that don't get
published
- Splits release publishing into `gateway-`, `headless-client-`, and
`gui-client-`
- Removes auto-deploying new infrastructure when a release is published.
Use the Deploy Production workflow instead.

Fixes #4397
2024-06-10 16:47:49 +00:00

17 lines
398 B
TOML

[package]
name = "http-test-server"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1"
axum = { version = "0.7.5", features = ["http1", "tokio"] }
tokio = { version = "1.38.0", features = ["net"] }
serde = {version = "1", features = ["derive"]}
futures = "0.3"
[lints]
workspace = true