Skip to content

Commit 1cf5a40

Browse files
committed
Add dependencies (I forgotten to stage this change)
1 parent f211579 commit 1cf5a40

File tree

4 files changed

+10
-0
lines changed

4 files changed

+10
-0
lines changed

Cargo.lock

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ async-trait = "0.1.73"
1414
base64 = "0.21.4"
1515
bytes = "1.5.0"
1616
chrono = "0.4.31"
17+
md5 = "0.7.0"
1718
reqwest = { version = "0.11.22", default-features = true, features = ["json", "blocking", "multipart"] }
1819
serde = { version = "1.0.188", features = ["derive"] }
1920
serde_json = "1.0"

misskey_api/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ interface = { path = "../interface" }
1111
async-trait.workspace = true
1212
bytes.workspace = true
1313
chrono.workspace = true
14+
md5.workspace = true
1415
reqwest.workspace = true
1516
serde.workspace = true
1617
serde_json.workspace = true

misskey_api/src/api.rs

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ use crate::consts::ENDPOINT;
44
use interface::PostAPI;
55
use async_trait::async_trait;
66
use bytes::Bytes;
7+
use md5;
78
use reqwest;
89
use reqwest::multipart;
910

0 commit comments

Comments
 (0)