-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
28 lines (25 loc) · 985 Bytes
/
Cargo.toml
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
[package]
name = "giveip"
authors = ["0/0 <[email protected]>", "valkyrie_pilot <[email protected]>"]
version = "1.0.0"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/randomairborne/giveip"
keywords = ["ip-address", "webserver", "docker"]
categories = ["web-programming::http-server"]
description = "A simple hyper http server to echo back IP addresses"
[dependencies]
axum = { version = "0.7", features = ["tokio", "http1", "http2"], default-features = false }
askama = { version = "0.12", features = ["with-axum"], default-features = false }
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
tower-http = { version = "0.5", features = ["set-header"] }
askama_axum = { version = "0.4", default-features = false }
tower-sombrero = { version = "0.0.4", features = ["axum"] }
thiserror = "1"
tower = "0.4"
vss = "0.1"
[profile.release]
lto = "fat"
codegen-units = 1
[package.metadata.cargo-machete]
ignored = ["askama_axum"]