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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g. crates.io) dependencies
#
# If you believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)
[package]
name = "fern"
version = "0.5.8"
authors = ["David Ross <[email protected]>"]
include = ["Cargo.toml", "src/**/*", "tests/**/*", "examples/**/*", "LICENSE", "README.md", "CONTRIBUTING.md", "CHANGELOG.md"]
description = "Simple, efficient logging"
documentation = "https://docs.rs/fern/"
readme = "README.md"
keywords = ["log", "logging", "logger"]
categories = ["development-tools::debugging"]
license = "MIT"
repository = "https://github.com/daboross/fern"
[package.metadata.docs.rs]
all-features = true
[[example]]
name = "cmd-program"
[[example]]
name = "colored"
required-features = ["colored"]
[[example]]
name = "pretty-colored"
required-features = ["colored"]
[[example]]
name = "syslog"
required-features = ["syslog-4"]
#[[example]]
#name = "syslog3"
#required-features = ["syslog-3"]
[[example]]
name = "meta-logging"
[dependencies.colored]
version = "1.5"
optional = true
[dependencies.log]
version = "0.4"
features = ["std"]
[dev-dependencies.chrono]
version = "0.4"
[dev-dependencies.clap]
version = "2.22"
[dev-dependencies.tempdir]
version = "0.3"
[features]
meta-logging-in-format = []
# syslog-3 = ["syslog3"]
syslog-4 = ["syslog"]
[target."cfg(not(windows))".dependencies.syslog]
version = "4"
optional = true
# [target."cfg(not(windows))".dependencies.syslog3]
# version = "3"
# optional = true
[badges.appveyor]
repository = "daboross/fern"
[badges.coveralls]
repository = "daboross/fern"
[badges.travis-ci]
repository = "daboross/fern"
|