generated from EmbarkStudios/opensource-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (33 loc) · 991 Bytes
/
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
36
37
38
[package]
name = "tame-webpurify"
description = "Simple Rust client for the WebPurify REST API"
version = "0.1.2"
authors = [
"Embark <[email protected]>",
"Mathias Tervo <[email protected]>"
]
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/EmbarkStudios/tame-webpurify"
repository = "https://github.com/EmbarkStudios/tame-webpurify"
categories = ["api-bindings"]
keywords = ["content-moderation"]
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
http = "0.2"
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1" }
thiserror = "1"
url = "2.3"
## dev dependencies below
[dev-dependencies]
bytes = "1.4"
serde_json = { version = "1" }
[dev-dependencies.reqwest]
version = "0.11"
features = ["rustls-tls"]
default-features = false
[dev-dependencies.tokio]
version = "1.25"
features = ["macros", "rt-multi-thread"]