will publish a 0.2.0 right away because of course right after publishing i notice sveral issues that need fixing.
27 lines
591 B
TOML
27 lines
591 B
TOML
[package]
|
|
name = "bunny-api-tokio"
|
|
version = "0.2.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",
|
|
"storage",
|
|
"async",
|
|
"tokio",
|
|
"client",
|
|
]
|
|
|
|
|
|
[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 = "2.5.4"
|