OpenWeatherMapSDK/Cargo.toml
Candifloss e56d43b9e7 Initiate library
- Create `Cargo.toml`
- Create basic library structure
- Initiate basic modules
- Edit README
2025-10-09 23:28:34 +05:30

18 lines
541 B
TOML

[package]
name = "owm-rs"
description = "Rust SDK for the OpenWeatherMap APIs"
version = "0.0.1"
edition = "2024"
license = "GPL-3.0-or-later"
authors = ["candifloss <candifloss.cc>"]
repository = "https://git.candifloss.cc/candifloss/OpenWeatherMapSDK.git"
readme = "README.md"
keywords = ["weather", "api", "openweathermap", "sdk"]
categories = ["api-bindings"]
[dependencies]
toml = "0.9.6"
dirs = "6.0.0"
serde = { version = "1.0.225", features = ["derive"] }
serde_json = "1.0.145"
chrono = { version = "0.4.42", features = ["serde"] }