-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
36 lines (31 loc) · 922 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
[package]
name = "chase"
version = "0.1.8"
authors = ["lloydmeta <[email protected]>"]
license = "MIT"
description = """
Async + sync file-following for people who care about file rotatons and line numbers.
"""
documentation = "https://docs.rs/chase"
repository = "https://github.com/lloydmeta/chase-rs"
keywords = ["chase", "logs", "tail", "log-tailing", "file-watch"]
readme = "README.md"
[[bin]]
name = "chase"
path = "src/main.rs"
required-features = ["binary"]
[dependencies]
futures = { version = "0.1", optional = true }
clap = { version = "2.30", optional = true }
serde = { version = "^1.0", optional = true }
serde_derive = { version = "^1.0", optional = true }
[dev-dependencies]
tempdir = "0.3"
[features]
binary = ["clap"]
stream = ["futures"]
with-serde = ["serde", "serde_derive"]
[package.metadata.docs.rs]
features = ["binary", "stream", "with-serde"]
all-features = true
no-default-features = true