forked from rbatis/fast_log
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (35 loc) · 879 Bytes
/
Cargo.toml
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
[workspace]
members = [
".",
"example"
]
[package]
name = "fast_log"
version = "1.6.16"
description = "Rust async log High-performance asynchronous logging"
readme = "Readme.md"
authors = ["ce <[email protected]>"]
repository = "https://github.com/rbatis/fast_log"
edition = "2021"
license = "MIT"
categories = ["logging"]
keywords = ["metrics", "async", "tracing"]
[features]
default = ["runtime_thread"]
gzip = ["flate2"]
lz4 = ["lz4_flex"]
mmap = ["memmap2"]
runtime_thread = []
[dependencies]
fastdate = "0.3"
log = { version = "0.4", features = ["std"] }
crossbeam-utils = "0.8"
crossbeam = "0.8"
crossbeam-channel = "0.5"
once_cell = "1.9"
dark-std = "0.2"
parking_lot = "0.12"
zip = { version = "0.6", optional = true }
lz4_flex = { version = "0.11", optional = true }
flate2 = { version = "1.0", optional = true}
memmap2 = {version = "0.9.0", optional = true}