19 lines
433 B
TOML
19 lines
433 B
TOML
[package]
|
|
name = "imgurx"
|
|
version = "0.2.0"
|
|
authors = ["blank X <theblankx@protonmail.com>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[profile.release]
|
|
lto = true
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.5", features = ["rt-multi-thread"] }
|
|
reqwest = "0.11"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
quick-xml = "0.22"
|
|
warp = "0.3"
|