mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-04-05 05:06:18 +00:00
- 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
17 lines
398 B
TOML
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
|