-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (33 loc) · 1.16 KB
/
Cargo.toml
File metadata and controls
35 lines (33 loc) · 1.16 KB
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 = "unleash-types"
version = "0.15.23"
edition = "2021"
authors = [
"Christopher Kolstad <[email protected]>",
"Simon Hornby <[email protected]>",
]
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 = ["wall-clock"]
wall-clock = ["chrono/clock", "chrono/wasmbind"]
openapi = ["utoipa"]
hashes = ["xxhash-rust", "base64"]
[dependencies]
base64 = { version = "0.22.1", optional = true }
chrono = { version = "0.4.43", default-features = false, features = ["serde", "std"] }
derive_builder = "0.20.2"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
utoipa = { version = "5", optional = true, features = ["chrono"] }
xxhash-rust = { version = "0.8.15", features = ["xxh3"], optional = true }
[dev-dependencies]
criterion = "0.8.2"
serde_qs = "0.15.0"
test-case = "3.3.1"
[[bench]]
name = "impact-metrics"
harness = false