12 lines
250 B
TOML
12 lines
250 B
TOML
[package]
|
|
name = "youtube-api"
|
|
version = "0.1.1"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["staticlib", "cdylib", "lib"]
|
|
|
|
[dependencies]
|
|
reqwest = { version = "0.12.12", features = ["json"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
json = "0.12.4" |