Files
geologia/Cargo.toml
Andre Cipriani Bandarra 414299cdc7 Add Apache 2.0 license
- Add LICENSE file with Apache 2.0 text
- Add license field to Cargo.toml
- Add copyright and SPDX headers to all source files
- Add License section to README.md
2026-04-18 08:07:11 +01:00

28 lines
693 B
TOML

[package]
name = "geologia"
version = "0.1.0"
edition = "2024"
license = "Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "0.13", features = ["json", "gzip", "stream"] }
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1" }
serde_with = { version = "3.18", features = ["base64"] }
tracing = "0.1"
tokio = { version = "1" }
tokio-stream = "0.1"
tokio-util = "0.7.18"
[dev-dependencies]
console = "0.16.3"
dialoguer = "0.12.0"
dotenvy = "0.15.7"
image = "0.25.10"
indicatif = "0.18.4"
tokio = { version = "1.51.0", features = ["full"] }
tracing-subscriber = "0.3.23"