-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (30 loc) · 958 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 = "thumbor"
description = "Rust client for the Thumbor image service. Provides a convenient builder API"
version = "0.1.11"
repository = "https://github.com/SteelAlloy/thumbor-rs"
documentation = "https://docs.rs/thumbor"
readme = "README.md"
license = "MIT"
edition = "2021"
rust-version = "1.62"
authors = ["SteelAlloy"]
categories = ["web-programming", "multimedia::images"]
keywords = ["client", "thumbor", "crop", "resize", "image"]
# https://docs.rs/katex-doc/0.1.0/katex_doc/
[package.metadata.docs.rs]
rustdoc-args = ["--html-in-header", "katex-header.html"]
[workspace.lints.rust]
unsafe_code = "forbid"
[workspace.lints.clippy]
cargo = "deny"
pedantic = "deny"
[dependencies]
strum = { version = "0.26.3", features = ["derive"] }
thiserror = "2.0.7"
hmac = "0.12.1"
sha1 = "0.10.6"
base64ct = { version = "1.6.0", features = ["alloc"] }
bon = "3.3.0"
serde = { version = "1.0.216", features = ["derive"] }
serde_json = "1.0.133"