-
Notifications
You must be signed in to change notification settings - Fork 742
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
appender: prepare tracing-appender for release (#705)
Following the release process for https://github.com/tokio-rs/tracing/blob/master/CONTRIBUTING.md and these changes are the only things left to commit before release. I'd like to hopefully get this released today so we can start using this crate internally. Note: I need to get PR #703 and PR #678 merged before release. Co-authored-by: Zeki Sherif <[email protected]> Co-authored-by: Eliza Weisman <[email protected]>
- Loading branch information
1 parent
361a867
commit f8b52bd
Showing
3 changed files
with
40 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# 0.1.0 (May 5, 2020) | ||
|
||
- Initial release |
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,13 +1,23 @@ | ||
[package] | ||
name = "tracing-appender" | ||
version = "0.1.0" | ||
authors = ["Zeki Sherif <[email protected]>"] | ||
edition = "2018" | ||
authors = [ | ||
"Zeki Sherif <[email protected]>", | ||
"Tokio Contributors <[email protected]>" | ||
] | ||
license = "MIT" | ||
readme = "README.md" | ||
repository = "https://github.com/tokio-rs/tracing" | ||
homepage = "https://tokio.rs" | ||
description = """ | ||
Provides an `appender` that writes to a file | ||
Provides utilities for file appenders and making non-blocking writers. | ||
""" | ||
categories = [ | ||
"development-tools::debugging", | ||
"asynchronous", | ||
] | ||
keywords = ["logging", "tracing", "file-appender", "non-blocking-writer"] | ||
edition = "2018" | ||
|
||
[dependencies] | ||
tracing-subscriber = {path = "../tracing-subscriber", version = "0.2.4"} | ||
|
@@ -16,4 +26,4 @@ chrono = "0.4.11" | |
|
||
[dev-dependencies] | ||
tracing = { path = "../tracing", version = "0.1" } | ||
tempdir = "0.3" | ||
tempdir = "0.3" |
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