-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (31 loc) · 1.03 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "arachnid-shield"
version = "0.1.1"
edition = "2021"
authors = ["CdnCentreForChildProtection <[email protected]>"]
readme = "README.md"
publish = true
description = "The official SDK for Arachnid Shield"
documentation = "https://github.com/CdnCentreForChildProtection/arachnid-shield-sdk-rust"
homepage = "https://github.com/CdnCentreForChildProtection/arachnid-shield-sdk-rust"
repository = "https://github.com/CdnCentreForChildProtection/arachnid-shield-sdk-rust"
keywords = ["arachnid-shield", "sdk", "arachnid"]
license-file = "LICENSE.md"
exclude = [
"docs/"
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
lto = "fat"
[dependencies]
base64 = "0.21.0"
mime = "0.3.17"
reqwest = { version = "0.11.18", features = ["blocking", "json"] }
serde = { version = "1.0.163", features = ["derive"] }
serde_json = "1.0.96"
thiserror = "1.0.40"
url = "2.3.1"
mime_guess = "2.0.4"
[dev-dependencies]
test-case = "3.1.0"
tokio = { version = "1", features = ["full"] }