-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
44 lines (40 loc) · 989 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
39
40
41
42
43
44
[package]
name = "logq"
description = "A web-server log file command line toolkit with SQL interface"
repository = "https://github.com/MnO2/logq"
version = "0.1.19"
license = "Apache-2.0 OR BSD-3-Clause"
authors = ["Paul Meng <[email protected]>"]
readme = "README.md"
keywords = ["log", "sql", "query", "search"]
categories = ["command-line-utilities"]
edition = "2018"
exclude = ["/benches/**", "/.travis.yml", "/data/**"]
[badges]
travis-ci = { repository = "MnO2/logq" }
codecov = { repository = "MnO2/logq" }
[dependencies]
clap = {version = "2.33", features = ["yaml"]}
regex = "1.5"
failure = "0.1"
hashbrown = "0.11"
ordered-float = "2.8"
nom = "7.0"
prettytable-rs = "^0.8"
chrono = "0.4"
url = "2.2"
csv = "1.1"
lazy_static = "1.4.0"
json = "0.12"
tdigest = "0.2"
pdatastructs = "0.6.0"
linked-hash-map = "0.5"
anyhow = "1.0"
[dev-dependencies]
criterion = "0.3"
rand = "0.8"
tempfile = "3.2"
[[bench]]
name = "logq_benchmark"
harness = false
path = "./benches/logq_benchmark.rs"