flashlog 0.1.3

A fast logging library for Rust
Documentation
[package]

name = "flashlog"

version = "0.1.3"

edition = "2021"

authors = ["Junbeom Lee <junbeoml22@gmail.com>"]

description = "A fast logging library for Rust"

license = "MIT OR Apache-2.0"

repository = "https://github.com/JunbeomL22/flashlog"



[[bench]]

name = "lazy_string"

harness = false





[lib]

name = "flashlog"

path = "src/lib.rs"



[dependencies]

quanta = "0.12"

once_cell = "1.8"

lazy_static = "1.4"

time = { version = "0.3", features = ["macros", "serde", "formatting", "parsing", "local-offset"] }

anyhow = "1.0.88"

criterion = "0.5"

chrono = { version = "0.4", features = ["serde"] }

chrono-tz = "0.10"

core_affinity = "0.8"

crossbeam-utils = "0.8"

crossbeam-channel = "0.5"

serde = { version = "1.0", features = ["derive"] }

serde_json = "1.0"

serde_derive = "1.0"



[profile.release]

opt-level = 3



members = [

    "flashlog",

    "examples/*"

]