mirror of
https://github.com/TheFunny/TelegramTwitterMediaBot.git
synced 2026-09-23 23:32:05 +00:00
Resolve the manifest and lockfile overlap with the rusqlite 0.40 and zip 8.6 bumps that landed on master after this branch was opened: - crates/xmedia-bot/Cargo.toml: keep rusqlite 0.40 and rand 0.10 - Cargo.lock: re-point x-media/xmedia-bot at rand 0.10.2; teloxide keeps its own rand 0.8.8 (it requires ^0.8.5), and cargo pruned the now-unused version_check entry Verified on the merged tree: cargo metadata --locked, cargo fmt --check, cargo clippy --workspace --all-targets --locked -- -D warnings, cargo test --workspace --locked (69 + 73 tests).
24 lines
521 B
TOML
24 lines
521 B
TOML
[package]
|
|
name = "x-media"
|
|
version = "1.6.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
regex = "1.12"
|
|
html-escape = "0.2"
|
|
url = "2.5.2"
|
|
bytes = "1"
|
|
zip = "8"
|
|
tempfile = "3"
|
|
thiserror = "2"
|
|
rand = "0.10"
|
|
log = "0.4"
|
|
tokio = { version = "1.40", features = ["time"] }
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1.40", features = ["macros", "rt-multi-thread"] }
|
|
dotenv = "0.15"
|