-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
28 lines (26 loc) · 1003 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 = "iproxy"
version = "0.1.0"
edition = "2021"
authors = ["containerscrew info@containerscrew.com"]
repository = "https://github.com/containerscrew/iproxy"
rust-version = "1.80.1"
license-file = "LICENSE"
description = "Proxy server for IP geolocation. Use external services to get the geolocation of an IP address."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["json", "fmt"] }
axum = "0.7.5"
serde_json = "1.0.122"
serde = { version = "1.0.205", features = ["derive"] }
tokio = { version = "1.39.2", features = ["rt", "rt-multi-thread", "macros", "full"] }
reqwest = { version = "0.12.5", features = ["json"] }
async-trait = "0.1.81"
toml = "0.8.19"
mongodb = "3.0.1"
bson = "2.11.0"
thiserror = "1.0.63"
openssl = { version = "0.10.59", features = ["vendored"] }
rand = "0.8.5"
tower-http = { version = "0.6.1", features = ["cors", "trace"] }