-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
54 lines (47 loc) · 1.35 KB
/
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
45
46
47
48
49
50
51
52
53
54
[package]
name = "hstdb"
version = "2.1.0"
authors = ["Alexander Thaller <[email protected]>"]
edition = "2021"
rust-version = "1.56"
description = "Better history management for zsh. Based on ideas from [https://github.com/larkery/zsh-histdb](https://github.com/larkery/zsh-histdb)."
documentation = "https://docs.rs/hstdb/"
homepage = "https://github.com/AlexanderThaller/hstdb"
license = "MIT"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["histdb-import"]
histdb-import = ["rusqlite"]
[dependencies]
bincode = "1"
chrono = { version = "0.4", features = ["serde"] }
clap_complete = "3"
clap = { version = "3", features = ["derive", "env"] }
comfy-table = "6"
crossbeam-utils = "0.8"
csv = "1"
ctrlc = { version = "3", features = ["termination"] }
directories = "4"
flume = "0.10"
glob = "0.3"
hostname = "0.3"
humantime = "2"
log = { version = "0.4", features = ["serde"] }
pretty_env_logger = "0.4"
regex = "1"
rusqlite = { version = "0.27", optional = true }
serde = { version = "1", features = ["derive"] }
sled = "0.34"
thiserror = "1"
toml = "0.5"
uuid = { version = "1", features = ["serde", "v4"] }
exitcode = "1.1.2"
[dev-dependencies]
tempfile = "3"
pretty_assertions = "1"
[profile.release]
lto = "fat"
opt-level = 3
panic = "abort"
strip = "debuginfo"