forked from tokio-rs/tracing
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2b993f2
commit 2148acf
Showing
9 changed files
with
154 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,7 @@ | ||
[package] | ||
name = "tracing-flame" | ||
version = "0.2.0" | ||
authors = [ | ||
"Jane Lusby <[email protected]>", | ||
"Tokio Contributors <[email protected]>" | ||
] | ||
authors = ["Jane Lusby <[email protected]>", "Tokio Contributors <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT" | ||
readme = "README.md" | ||
|
@@ -26,10 +23,15 @@ default = ["smallvec"] | |
smallvec = ["tracing-subscriber/smallvec"] | ||
|
||
[dependencies] | ||
tracing-subscriber = { path = "../tracing-subscriber", version = "0.3.0", default-features = false, features = ["registry", "fmt"] } | ||
tracing = { path = "../tracing", version = "0.1.35", default-features = false, features = ["std"] } | ||
tracing-subscriber = { path = "../tracing-subscriber", version = "0.3.0", default-features = false, features = [ | ||
"registry", | ||
"fmt", | ||
] } | ||
tracing = { path = "../tracing", version = "0.1.35", default-features = false, features = [ | ||
"std", | ||
] } | ||
once_cell = "1.13.0" | ||
rubicon = "3.0.1" | ||
rubicon = "3.2.0" | ||
|
||
|
||
[dev-dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,10 @@ name = "tracing" | |
# - Update CHANGELOG.md. | ||
# - Create "v0.1.x" git tag | ||
version = "0.1.40" | ||
authors = ["Eliza Weisman <[email protected]>", "Tokio Contributors <[email protected]>"] | ||
authors = [ | ||
"Eliza Weisman <[email protected]>", | ||
"Tokio Contributors <[email protected]>", | ||
] | ||
license = "MIT" | ||
readme = "README.md" | ||
repository = "https://github.com/tokio-rs/tracing" | ||
|
@@ -32,7 +35,7 @@ tracing-core = { path = "../tracing-core", version = "0.1.32", default-features | |
log = { version = "0.4.17", optional = true } | ||
tracing-attributes = { path = "../tracing-attributes", version = "0.1.27", optional = true } | ||
pin-project-lite = "0.2.9" | ||
rubicon = "3.0.1" | ||
rubicon = "3.2.0" | ||
|
||
[dev-dependencies] | ||
criterion = { version = "0.3.6", default_features = false } | ||
|
@@ -46,17 +49,17 @@ wasm-bindgen-test = "0.3.38" | |
[features] | ||
default = ["std", "attributes"] | ||
|
||
max_level_off = [] | ||
max_level_off = [] | ||
max_level_error = [] | ||
max_level_warn = [] | ||
max_level_info = [] | ||
max_level_warn = [] | ||
max_level_info = [] | ||
max_level_debug = [] | ||
max_level_trace = [] | ||
|
||
release_max_level_off = [] | ||
release_max_level_off = [] | ||
release_max_level_error = [] | ||
release_max_level_warn = [] | ||
release_max_level_info = [] | ||
release_max_level_warn = [] | ||
release_max_level_info = [] | ||
release_max_level_debug = [] | ||
release_max_level_trace = [] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters