-
Notifications
You must be signed in to change notification settings - Fork 132
/
Copy pathCargo.toml
41 lines (37 loc) · 930 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
34
35
36
37
38
39
40
41
[package]
name = "glean"
version = "63.1.0"
authors = ["Jan-Erik Rediger <[email protected]>", "The Glean Team <[email protected]>"]
description = "Glean SDK Rust language bindings"
repository = "https://github.com/mozilla/glean"
readme = "README.md"
license = "MPL-2.0"
edition = "2021"
keywords = ["telemetry", "glean"]
include = [
"/README.md",
"/LICENSE",
"/src",
"/tests",
"/Cargo.toml",
]
rust-version = "1.76"
[badges]
circle-ci = { repository = "mozilla/glean", branch = "main" }
maintenance = { status = "actively-developed" }
[dependencies.glean-core]
path = ".."
version = "63.1.0"
[dependencies]
crossbeam-channel = "0.5"
inherent = "1"
log = "0.4.8"
once_cell = "1.18.0"
whatsys = "0.3.0"
[dev-dependencies]
env_logger = { version = "0.10.0", default-features = false, features = ["humantime"] }
flate2 = "1.0.19"
jsonschema-valid = "0.5.0"
libc = "0.2"
serde_json = "1.0.44"
tempfile = "3.1.0"