-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (33 loc) · 804 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
[package]
name = "sqlgrep"
version = "0.8.2"
authors = ["Anton Jansson <anton_jansson@live.se>"]
edition = "2018"
description = "sqlgrep = SQL + grep + tail -f"
license = "MIT"
homepage = "https://github.com/svenslaggare/sqlgrep"
[features]
default = []
python_wrapper = ["pyo3"]
[lib]
name = "sqlgrep"
crate-type = ["rlib", "cdylib"]
[dependencies]
regex = "1"
lazy_static = "1"
structopt = "0.3"
ctrlc = "3.0"
rustyline = "12.0.0"
rustyline-derive = "0.9.0"
fnv = "1.0"
itertools = "0.12.0"
serde_json = { version = "1", features = ["preserve_order"] }
chrono = "0.4"
pyo3 = { version = "0.20", features = ["extension-module"], optional = true }
[target.'cfg(unix)'.dependencies]
cursive = { version = "0.20" }
[dev-dependencies]
criterion = "0.5"
[[bench]]
name = "full_pipeline"
harness = false