mirror of
https://framagit.org/veretcle/tootube.git
synced 2025-07-20 12:31:19 +02:00
26 lines
600 B
TOML
26 lines
600 B
TOML
[package]
|
|
name = "tootube"
|
|
authors = ["VC <veretcle+framagit@mateu.be>"]
|
|
version = "0.7.2"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
rpassword = "^7.3"
|
|
reqwest = { version = "^0.11", features = ["json", "stream", "multipart"] }
|
|
tokio = { version = "^1", features = ["full"] }
|
|
clap = "^4"
|
|
serde = { version = "^1", features = ["derive"] }
|
|
toml = "^0.5"
|
|
log = "^0.4"
|
|
env_logger = "^0.10"
|
|
indicatif = "^0.17"
|
|
async-stream = "^0.3"
|
|
futures-util = "^0.3"
|
|
|
|
[profile.release]
|
|
strip = true
|
|
lto = true
|
|
codegen-units = 1
|