mirror of
https://github.com/Xinrea/bili-shadowreplay.git
synced 2025-11-24 20:15:34 +08:00
* feat: migrate to uniformed interface for danmu stream * feat: douyin danmu support (close #113) * chore: fix typo * fix: loop-decompress body
44 lines
832 B
TOML
44 lines
832 B
TOML
[package]
|
|
name = "danmu_stream"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "danmu_stream"
|
|
path = "src/lib.rs"
|
|
|
|
[[example]]
|
|
name = "douyin"
|
|
path = "examples/douyin.rs"
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
tokio-tungstenite = { version = "0.20", features = ["native-tls"] }
|
|
futures-util = "0.3"
|
|
prost = "0.12"
|
|
chrono = "0.4"
|
|
log = "0.4"
|
|
env_logger = "0.10"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
reqwest = { version = "0.11", features = ["json"] }
|
|
url = "2.4"
|
|
md5 = "0.7"
|
|
regex = "1.9"
|
|
deno_core = "0.242.0"
|
|
pct-str = "2.0.0"
|
|
custom_error = "1.9.2"
|
|
flate2 = "1.0"
|
|
scroll = "0.13.0"
|
|
scroll_derive = "0.13.0"
|
|
brotli = "8.0.1"
|
|
http = "1.0"
|
|
rand = "0.9.1"
|
|
urlencoding = "2.1.3"
|
|
gzip = "0.1.2"
|
|
hex = "0.4.3"
|
|
async-trait = "0.1.88"
|
|
|
|
[build-dependencies]
|
|
tonic-build = "0.10"
|