bunny-api-tokio/Cargo.toml
Radical 6832215aaa build: add dev-dependencies for doctest
Most tests will still fail due to the API key but this will make checking of the code formatting, etc. easier.
2025-05-24 03:34:03 +02:00

27 lines
702 B
TOML

[package]
name = "bunny-api-tokio"
version = "0.3.0"
edition = "2024"
authors = ["Radical <radical@radical.fun>"]
license = "MIT"
repository = "https://git.gorb.app/gorb/bunny-api-tokio"
description = "Provides access to the Bunny CDN API asynchronously using tokio."
keywords = [
"bunny",
"cdn",
"api-client",
"async",
"tokio",
]
[dev-dependencies]
tokio = { version = "1.45.0", features = ["fs", "rt", "rt-multi-thread", "macros"] }
[dependencies]
bytes = "1.10.1"
log = "0.4.27"
reqwest = { version = "0.12.15", features = ["json"] }
serde = { version = "1.0.219", features = ["derive"] }
thiserror = "2.0.12"
tokio = "1.45.0"
url = { version = "2.5.4", features = ["serde"] }