39 lines
897 B
TOML
39 lines
897 B
TOML
[package]
|
|
name = "bunny-api-tokio"
|
|
version = "0.4.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",
|
|
]
|
|
|
|
[features]
|
|
default = ["bunnynet"]
|
|
bunnynet = []
|
|
edge_storage = []
|
|
# Kept here for future use
|
|
#stream = []
|
|
#edge_scripting = []
|
|
#bunny_shield = []
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1.45.1", features = ["fs", "rt", "rt-multi-thread", "macros"] }
|
|
|
|
[dependencies]
|
|
bytes = "1.10.1"
|
|
log = "0.4.27"
|
|
reqwest = { version = "0.12.20", features = ["json"] }
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
thiserror = "2.0.12"
|
|
tokio = "1.45.1"
|
|
url = { version = "2.5.4", features = ["serde"] }
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|