-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
46 lines (43 loc) · 1.46 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
39
40
41
42
43
44
45
46
[package]
name = "launchdarkly-server-sdk-evaluation"
description = "LaunchDarkly feature flag evaluation engine"
version = "2.0.1"
authors = ["LaunchDarkly"]
edition = "2021"
rust-version = "1.74.0"
license = "Apache-2.0"
homepage = "https://docs.launchdarkly.com/sdk/server-side/rust"
repository = "https://github.com/launchdarkly/rust-server-sdk-evaluation"
keywords = ["launchdarkly", "feature-flags", "feature-toggles"]
exclude = [
".github",
".pre-commit-config.yaml",
"coverage.sh"
]
[dependencies]
chrono = { version = "0.4.23", default-features = false, features = ["std"] }
lazy_static = "1.4.0"
log = "0.4.11"
regex = "1.3.9"
serde = { version = "1.0.115", features = ["derive"] }
semver = "1.0.14"
# Warning: do not enable serde_json 'arbitrary_precision' feature, as it could cause errors in context
# deserialization.
serde_json = "1.0.57"
sha1 = { version = "0.10.1", features = ["std"] }
base16ct = { version = "0.2.0", features = ["alloc"] }
maplit = "1.0.1"
itertools = "0.14.0"
serde_with = "3.12.0"
[dev-dependencies]
spectral = "0.6.0"
test-case = "2.0.0"
assert-json-diff = "2.0.1"
proptest = "1.0.0"
proptest-derive = "0.5.1"
[features]
# If a secondary key is present in Context data, use it when computing
# the Context's bucket. This may be enabled for backwards-compatibility purposes,
# e.g. for usage in a non-SDK application, but it is otherwise unnecessary as
# secondary keys cannot be set using Context builders.
secondary_key_bucketing = []