-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
22 lines (20 loc) · 908 Bytes
/
Copy pathCargo.toml
File metadata and controls
22 lines (20 loc) · 908 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "podcast-api"
version = "3.0.0"
authors = ["Listen Notes, Inc. <hello@listennotes.com>"]
edition = "2024"
rust-version = "1.88"
description = "Rust bindings for the Listen Notes Podcast API"
license = "MIT"
keywords = ["listennotes", "podcast", "searchengine", "podcastsearch"]
documentation = "https://docs.rs/podcast-api"
repository = "https://github.com/ListenNotes/podcast-api-rust"
readme = "README.md"
homepage = "https://www.listennotes.com/api/"
categories = ["api-bindings", "multimedia::audio", "multimedia"]
include = ["src/**", "tests/**", "examples/sample.rs", "Cargo.toml", "Cargo.lock", "README.md", "LICENSE"]
[dependencies]
reqwest = { version = "0.13.5", default-features = false, features = ["json", "query", "form", "rustls"] }
serde_json = "1.0.150"
[dev-dependencies]
tokio = { version = "1.53.0", features = ["macros", "rt-multi-thread", "net", "io-util", "time"] }