Backed out 5 changesets (bug 1890092, bug 1888683) for causing build bustages & crash...
[gecko.git] / toolkit / components / glean / api / Cargo.toml
blobdc688dc41efabce35e0cedc2a541c82b1e56d4c2
1 [package]
2 name = "firefox-on-glean"
3 version = "0.1.0"
4 authors = ["Glean SDK team <glean-team@mozilla.com>"]
5 edition = "2018"
6 publish = false
7 license = "MPL-2.0"
9 [dependencies]
10 bincode = "1.0"
11 chrono = "0.4.10"
12 glean = "58.1.0"
13 inherent = "1.0.0"
14 log = "0.4"
15 nsstring = { path = "../../../../xpcom/rust/nsstring", optional = true }
16 once_cell = "1.2.0"
17 serde = { version = "1.0", features = ["derive"] }
18 uuid = { version = "1.0", features = ["v4"] }
19 xpcom = { path = "../../../../xpcom/rust/xpcom", optional = true }
20 thin-vec = { version = "0.2.1", features = ["gecko-ffi"] }
21 mozbuild = "0.1"
22 serde_json = "1"
24 [dev-dependencies]
25 tempfile = "3.1.0"
27 [features]
28 with_gecko = ["xpcom", "nsstring"]