-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
34 lines (30 loc) · 981 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
[package]
name = "tinify-rs"
version = "1.4.1"
edition = "2021"
description = "A Rust client for the Tinify API"
authors = ["The tinify-rs Developers"]
license = "MIT"
readme = "README.md"
documentation = "https://docs.rs/tinify-rs"
repository = "https://github.com/Danieroner/tinify-rs"
homepage = "https://github.com/Danieroner/tinify-rs"
keywords = ["tinify", "tinypng", "tinyjpg", "compress", "optimize"]
categories = ["compression", "multimedia::images"]
[dependencies]
reqwest = { version = "0.11.11", features = ["blocking"] }
tokio = { version = "1", features = ["full"], optional = true}
serde = { version = "1.0.149", default-features = false, features = ["derive"] }
serde_json = { version = "1.0.89", default-features = false, features = ["alloc"] }
serde_derive = "1.0.149"
url = "2.5.0"
[dev-dependencies]
dotenv = "0.15.0"
imagesize = "0.10.1"
assert_matches = "1.5.0"
[lib]
name = "tinify"
path = "./src/lib.rs"
doctest = false
[features]
async = ["dep:tokio"]