-
Notifications
You must be signed in to change notification settings - Fork 123
/
Cargo.toml
64 lines (56 loc) · 1.76 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[package]
name = "glean-core"
version = "62.0.0"
authors = ["Jan-Erik Rediger <[email protected]>", "The Glean Team <[email protected]>"]
description = "A modern Telemetry library"
repository = "https://github.com/mozilla/glean"
readme = "README.md"
license = "MPL-2.0"
edition = "2021"
keywords = ["telemetry"]
include = [
"/README.md",
"/LICENSE",
"/src",
"/examples",
"/tests",
"/Cargo.toml",
"/uniffi.toml",
"/build.rs",
]
rust-version = "1.76"
[package.metadata.glean]
glean-parser = "15.2.0"
[badges]
circle-ci = { repository = "mozilla/glean", branch = "main" }
maintenance = { status = "actively-developed" }
[dependencies]
serde = { version = "1.0.104", features = ["derive"] }
serde_json = "1.0.44"
rkv = { version = "0.19.0", default-features = false }
bincode = "1.2.1"
log = "0.4.8"
uuid = { version = "1.0", features = ["v4"] }
chrono = { version = "0.4.10", features = ["serde"] }
once_cell = "1.18.0"
flate2 = "1.0.19"
zeitstempel = "0.1.0"
crossbeam-channel = "0.5"
thiserror = "1.0.4"
uniffi = { version = "0.28.0", default-features = false }
time = "0.1.40"
env_logger = { version = "0.10.0", default-features = false, optional = true }
[target.'cfg(target_os = "android")'.dependencies]
android_logger = { version = "0.12.0", default-features = false }
[target.'cfg(target_os = "ios")'.dependencies]
oslog = { version = "0.1.0", default-features = false, features = ["logger"] }
[dev-dependencies]
env_logger = { version = "0.10.0", default-features = false, features = ["humantime"] }
tempfile = "3.8.0"
iso8601 = "0.4"
ctor = "0.2.2"
[build-dependencies]
uniffi = { version = "0.28.0", default-features = false, features = ["build"] }
[features]
# Enable `env_logger`. Only works on non-Android non-iOS targets.
enable_env_logger = ["env_logger"]