-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (22 loc) · 748 Bytes
/
Copy pathCargo.toml
File metadata and controls
28 lines (22 loc) · 748 Bytes
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
[package]
name = "memory_logger"
version = "0.1.1"
license = "MIT"
edition = "2018"
authors = ["gahag <gabriel.s.b@live.com>"]
description = "A logger that buffers messages in memory, allowing arbitrary flushes"
repository = "https://github.com/gahag/memory_logger"
readme = "readme.md"
keywords = [ "logger", "log", "logging" ]
categories = [ "development-tools::debugging" ]
[features]
target = [ "regex" ]
# These are mutually exclusive:
blocking = [ ]
asynchronous = [ "flume" ]
[dependencies]
log = { version = "0.4", features = [ "std" ] }
flume = { version = "0.10", default-features = false, optional = true }
regex = { version = "1.3", optional = true }
[package.metadata.docs.rs]
features = [ "blocking", "asynchronous", "target" ]