-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
80 lines (71 loc) · 1.64 KB
/
Copy pathCargo.toml
File metadata and controls
80 lines (71 loc) · 1.64 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[package]
name = "logq"
description = "A web-server log file command line toolkit with SQL interface"
repository = "https://github.com/MnO2/logq"
version = "0.2.0"
license = "Apache-2.0 OR BSD-3-Clause"
authors = ["Paul Meng <me@paulme.ng>"]
readme = "README.md"
keywords = ["log", "sql", "query", "search"]
categories = ["command-line-utilities"]
edition = "2024"
rust-version = "1.85"
exclude = ["/benches/**", "/data/**"]
[features]
bench-internals = []
[dependencies]
clap = { version = "4", features = ["derive"] }
regex = "1.5"
thiserror = "2"
hashbrown = "0.17"
ordered-float = "5"
nom = "7.0"
prettytable-rs = "^0.10"
chrono = "0.4"
url = "2.2"
csv = "1.1"
lazy_static = "1.4.0"
serde_json = { version = "1", features = ["preserve_order"] }
serde = { version = "1", features = ["derive"] }
toml = "0.9"
tdigest = "0.2.3"
pdatastructs = "0.7"
linked-hash-map = "0.5"
anyhow = "1.0"
lru = "0.18"
memmap2 = "0.9"
rayon = "1.10"
smallvec = "1"
memchr = "2"
compact_str = "0.8"
flate2 = { version = "1", default-features = false, features = ["rust_backend"] }
glob = "0.3"
[dev-dependencies]
criterion = "0.7"
rand = "0.8"
tempfile = "3.2"
linked-hash-map = "0.5"
proptest = "1"
[[bench]]
name = "bench_parser"
harness = false
required-features = ["bench-internals"]
[[bench]]
name = "bench_execution"
harness = false
required-features = ["bench-internals"]
[[bench]]
name = "bench_datasource"
harness = false
required-features = ["bench-internals"]
[[bench]]
name = "bench_udf"
harness = false
[[bench]]
name = "bench_sort"
harness = false
required-features = ["bench-internals"]
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"