-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (39 loc) · 1.11 KB
/
Cargo.toml
File metadata and controls
44 lines (39 loc) · 1.11 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
[package]
name = "tracing-gstreamer"
version = "0.8.0"
edition = "2018"
authors = ["Simonas Kazlauskas <tracing-gstreamer@kazlauskas.me>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/standard-ai/tracing-gstreamer"
documentation = "https://docs.rs/tracing-gstreamer/"
readme = "README.mkd"
description = "Bridge between gstreamer and the tracing ecosystem"
keywords = ["tracing", "logging", "gstreamer", "multimedia"]
categories = ["development-tools::debugging", "development-tools::profiling"]
rust-version = "1.64"
[lib]
harness = false
crate-type = ["cdylib", "rlib"]
[dependencies]
libc = "0.2.69"
once_cell = "1.8.0"
tracing = "0.1.0"
tracing-core = "0.1.17"
gstreamer = "0.23"
thread_local = "1.1"
tracing-chrome = { version = "0.7.0", optional = true }
tracing-subscriber = { version = "0.3", default_features = false, features = [
"std",
"fmt",
"ansi",
"env-filter",
"alloc",
"registry",
] }
[dev-dependencies]
tracing = "0.1.0"
tracing-tracy = "0.11"
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "tracing_gstreamer_docs"]
[features]
tracing-chrome = ["dep:tracing-chrome"]