22 lines
711 B
TOML
22 lines
711 B
TOML
[package]
|
|
name = "internet_mapper"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
base64 = "0.22.1"
|
|
futures-util = "0.3.31"
|
|
html5ever = "0.29"
|
|
metrics = "0.24.1"
|
|
metrics-exporter-prometheus = { version = "0.16.2", features=["http-listener"]}
|
|
# minio = "0.1.0"
|
|
minio = {git="https://github.com/minio/minio-rs.git", rev = "c28f576"}
|
|
reqwest = { version = "0.12", features = ["gzip", "default", "rustls-tls", "stream"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
surrealdb = "2.2"
|
|
tokio = { version="1.41.0", features = ["full"] }
|
|
toml = "0.8.20"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter", "local-time", "json"] }
|
|
url = { version = "2.5", features = ["serde"] }
|