iproxy 0.3.0

Proxy server for IP geolocation. Use external services to get the geolocation of an IP address.
[package]
name = "iproxy"
version = "0.3.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.8.1"
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 = "2.0.9"
openssl = { version = "0.10.59"}
rand = "0.8.5"
tower-http = { version = "0.6.1", features = ["cors", "trace"] }