-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
38 lines (32 loc) · 1.02 KB
/
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
35
36
37
38
[package]
name = "open-feature"
version = "0.2.5"
edition = "2021"
rust-version = "1.71.1" # MSRV
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.80"
lazy_static = "1.5"
mockall = { version = "0.13.0", optional = true }
serde_json = { version = "1.0.116", optional = true }
time = "0.3.36"
tokio = { version = "1.40", features = ["full"] }
typed-builder = "0.20.0"
log = { package = "log", version = "0.4", optional = true }
[dev-dependencies]
env_logger = "0.11.5"
structured-logger = "1.0.3"
spec = { path = "spec" }
[features]
default = ["test-util", "dep:log"]
test-util = ["dep:mockall"]
serde_json = ["dep:serde_json"]
structured-logging = ["log?/kv"]