mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-12-06 07:29:42 +00:00
29 lines
589 B
TOML
29 lines
589 B
TOML
[package]
|
|
name = "rust_lib_spotube"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "staticlib"]
|
|
|
|
[[bin]]
|
|
name = "spotube"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
flutter_rust_bridge = "=2.11.1"
|
|
boa_engine = "0.21.0"
|
|
boa_runtime = "0.21.0"
|
|
boa_gc = "0.21.0"
|
|
anyhow = "1"
|
|
reqwest = { version = "0.12.x" }
|
|
http = { version = "1.3.1" }
|
|
serde_json = "1"
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
futures = "0.3.x"
|
|
tokio = { version = "1.48.0", features = ["full"] }
|
|
heck = "0.5.0"
|
|
|
|
[lints.rust]
|
|
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(frb_expand)'] }
|