forked from open-feature/rust-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (28 loc) · 871 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
[package]
name = "open-feature"
version = "0.2.2"
edition = "2021"
rust-version = "1.67.1"
description = "The official OpenFeature Rust SDK."
documentation = "https://docs.rs/open-feature"
readme = "README.md"
homepage = "https://openfeature.dev/"
repository = "https://github.com/open-feature/rust-sdk"
license = "Apache-2.0"
[badges]
maintenance = { status = "actively-developed" }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1"
lazy_static = "1.4"
mockall = { version = "0.12", optional = true }
serde_json = { version = "1.0", optional = true }
time = "0.3"
tokio = { version = "1.37", features = [ "full" ] }
typed-builder = "0.18"
[dev-dependencies]
spec = { path = "spec" }
[features]
default = [ "test-util" ]
test-util = [ "dep:mockall" ]
serde_json = [ "dep:serde_json" ]