-
Notifications
You must be signed in to change notification settings - Fork 256
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (49 loc) · 1.75 KB
/
Cargo.toml
File metadata and controls
55 lines (49 loc) · 1.75 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "nimbus-fml"
version = "0.1.0"
edition = "2021"
authors = ["Nimbus SDK Engineering"]
license = "MPL-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
client-lib = []
uniffi-bindings = ["client-lib", "dep:uniffi"]
# XXX - this test code has failed undetected for a very long time and should either be removed or fixed.
kotlin-tests = []
swift-tests = []
# and a work-around so that `--all-features` still arranges to keep our test features disabled.
all-features-workaround = []
[lib]
name = "nimbus_fml"
# A bin target needed when used in m-c.
[[bin]]
name = "nimbus-fml"
[build-dependencies]
uniffi = { version = "0.31", features = ["build"], optional = true }
[dev-dependencies]
tempfile = "3"
# If you enable any of the `*-tests` features you will also need to uncomment this.
# It is commented to avoid dragging it into m-c, which is a larger than expected yak to shave for something that's not actually used.
# jsonschema = { version = "0.17", default-features = false, optional = true }
[dependencies]
clap = {version = "4.2", default-features = false, features = ["std", "derive"]}
anyhow = "1.0.44"
serde_json = { version = "1", features = ["preserve_order"] }
serde_yaml = "0.9"
serde = { version = "1.0", features = ["derive"] }
thiserror = "2"
askama = "0.14"
textwrap = { version = "0.16", default-features = false }
heck = "0.5"
icu_segmenter = "2"
url = { version = "2", features = ["serde"] }
glob = "0.3.0"
uniffi = { version = "0.31", optional = true }
cfg-if = "1.0.0"
lazy_static = "1.4"
sha2 = "^0.10"
itertools = "0"
regex = "1.9"
viaduct = { path = "../../viaduct/" }
termcolor = "1.4.1"
mozilla-central-workspace-hack = { version = "0.1", features = ["nimbus-fml"], optional = true }