diff options
| author | Christine Dodrill <me@christine.website> | 2020-10-02 18:36:57 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-02 18:36:57 -0400 |
| commit | fa13e57835e487d586024a2e065e8f4b30dc88cd (patch) | |
| tree | e62623fec8d1f3e376453cb33ad0e42b2019b589 /Cargo.toml | |
| parent | a6ee2e7e36e8e8fac6f7c5f452cd6a0a06790584 (diff) | |
| download | xesite-fa13e57835e487d586024a2e065e8f4b30dc88cd.tar.xz xesite-fa13e57835e487d586024a2e065e8f4b30dc88cd.zip | |
incorporate tracing instead of log (#222)
* incorporate tracing instead of log
* fix a test
* fix a test
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -19,7 +19,6 @@ kankyo = "0.3" lazy_static = "1.4" log = "0.4" mime = "0.3.0" -pretty_env_logger = "0" prometheus = { version = "0.10", default-features = false, features = ["process"] } rand = "0" serde_dhall = "0.7.0" @@ -28,6 +27,9 @@ serde_yaml = "0.8" sitemap = "0.4" thiserror = "1" tokio = { version = "0.2", features = ["macros"] } +tracing = "0.1" +tracing-futures = "0.2" +tracing-subscriber = { version = "0.2", features = ["fmt"] } warp = "0.2" xml-rs = "0.8" url = "2" @@ -45,6 +47,7 @@ pfacts = "0" serde_json = "1" eyre = "0.6" reqwest = { version = "0.10", features = ["json"] } +pretty_env_logger = "0" [workspace] members = [ |
