Compare commits
3 Commits
v2.0.0
...
minimal-ve
| Author | SHA1 | Date | |
|---|---|---|---|
| 3e557665c9 | |||
| faa5ce8549 | |||
| 136c051c82 |
15
Cargo.toml
15
Cargo.toml
@@ -9,6 +9,21 @@ reqwest = { version = "0.11.13", features = ["json", "stream", "multipart"] }
|
||||
serde = { version = "1.0.152", features = ["derive"] }
|
||||
tokio = { version = "1.24.2", features = ["macros", "rt-multi-thread"] }
|
||||
|
||||
# Grand-dependency Pins ----
|
||||
# Fixes: Reqwest uses too-old version of crate `log`
|
||||
log = "0.4.6"
|
||||
|
||||
# Debian 12 uses OpenSSL 3.x and older libssl-sys crates are angry about that
|
||||
|
||||
# Fixes: native lib lookup.
|
||||
# Causes: missing item in crate `ffi`
|
||||
openssl-sys = "0.9.64"
|
||||
|
||||
# Fixes: missing item in crate `ffi` (from openssl-sys)
|
||||
openssl = "0.10.35"
|
||||
|
||||
# End Grand-dependency Pins ----
|
||||
|
||||
# Packages available in Debian (Sid)
|
||||
# clap = "4.5.23"
|
||||
# reqwest = "0.12.15"
|
||||
|
||||
@@ -9,7 +9,7 @@ pub struct Attachment {
|
||||
name: String,
|
||||
size: i64,
|
||||
download_count: i64,
|
||||
created: String, // TODO: Date-time struct
|
||||
created_at: String, // TODO: Date-time struct
|
||||
uuid: String,
|
||||
download_url: String,
|
||||
browser_download_url: String,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user