-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (28 loc) · 1018 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
[package]
name = "unleash-types"
version = "0.14.0"
edition = "2021"
authors = [
"Christopher Kolstad <chriswk@getunleash.io>",
"Simon Hornby <liquidwicked64@gmail.com>",
]
license = "MIT"
description = "API types for Unleash (https://github.com/Unleash/unleash) client features API response"
repository = "https://github.com/Unleash/unleash-types-rs"
homepage = "https://github.com/Unleash/unleash-types-rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = []
openapi = ["utoipa"]
hashes = ["xxhash-rust", "base64"]
[dependencies]
base64 = { version = "0.22.1", optional = true }
chrono = { version = "0.4.38", features = ["serde"] }
derive_builder = "0.20.2"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
utoipa = { version = "5", optional = true, features = ["chrono"] }
xxhash-rust = { version = "0.8.12", features = ["xxh3"], optional = true }
[dev-dependencies]
serde_qs = "0.13.0"
test-case = "3.3.1"