2019-12-02 20:36:46 +03:00
|
|
|
[package]
|
|
|
|
name = "glean-preview"
|
2020-01-15 13:55:34 +03:00
|
|
|
version = "0.0.5"
|
2019-12-02 20:36:46 +03:00
|
|
|
authors = ["Jan-Erik Rediger <jrediger@mozilla.com>", "The Glean Team <glean-team@mozilla.com>"]
|
|
|
|
description = "Nice Glean SDK Rust API"
|
|
|
|
repository = "https://github.com/mozilla/glean"
|
|
|
|
readme = "README.md"
|
|
|
|
license = "MPL-2.0"
|
|
|
|
edition = "2018"
|
|
|
|
keywords = ["telemetry", "glean"]
|
|
|
|
include = [
|
2020-05-29 16:11:57 +03:00
|
|
|
"/README.md",
|
|
|
|
"/LICENSE",
|
|
|
|
"/CHANGELOG.md",
|
|
|
|
"/src",
|
|
|
|
"/tests",
|
|
|
|
"/Cargo.toml",
|
2019-12-02 20:36:46 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
[badges]
|
2020-06-08 19:32:01 +03:00
|
|
|
circle-ci = { repository = "mozilla/glean", branch = "main" }
|
2019-12-02 20:36:46 +03:00
|
|
|
maintenance = { status = "actively-developed" }
|
|
|
|
|
|
|
|
[dependencies.glean-core]
|
|
|
|
path = ".."
|
2020-06-12 12:58:19 +03:00
|
|
|
version = "31.1.1"
|
2019-12-02 20:36:46 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2019-12-06 20:42:10 +03:00
|
|
|
once_cell = "1.2.0"
|
2019-12-02 20:36:46 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
env_logger = { version = "0.7.1", default-features = false, features = ["termcolor", "atty", "humantime"] }
|
2020-01-10 16:36:14 +03:00
|
|
|
tempfile = "3.1.0"
|
2019-12-02 20:36:46 +03:00
|
|
|
log = "0.4.8"
|
2020-02-19 18:04:31 +03:00
|
|
|
jsonschema-valid = "0.3.0"
|
|
|
|
serde_json = "1.0.44"
|