-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
27 lines (25 loc) · 837 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
[package]
name = "ifconfig"
version = "1.0.0"
edition = "2021"
description = "Public IP address API"
license = "Apache-2.0"
repository = "https://github.com/jakewmeyer/ifconfig"
homepage = "https://github.com/jakewmeyer/ifconfig"
[dependencies]
anyhow = "1"
axum = { version = "0.6.1", features = ["headers", "http2"] }
clap = { version = "4.0.29", features = ["derive", "env"] }
dotenvy = "0.15.6"
log = "0.4.17"
owasp-headers = "0.1.2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "1"
tokio = { version = "1", features = ["full"] }
tower-default-headers = "0.1.1"
tower-http = { version = "0.3.5", features = ["trace", "cors", "compression-full", "request-id"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
[dev-dependencies]
pretty_assertions = "1.3.0"