-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (36 loc) · 1011 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
[package]
name = "task-reminder"
version = "0.1.0"
edition = "2021"
autotests = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.65"
clap = { version = "4.0.10", features = ["derive"] }
env_logger = "0.9.1"
log = "0.4.17"
nanoid = "0.4.0"
notify-rust = "4.5.10"
once_cell = "1.16.0"
prettytable-rs = "0.10.0"
regex = "1.6.0"
serde = { version = "1.0.202", features = ["derive"] }
serde_json = "1.0.85"
time = { version = "0.3.15", features = ["local-offset", "serde", "macros", "formatting", "parsing"] }
tokio = { version = "1.37.0", features = ["time", "rt", "sync", "macros"] }
[[test]]
path = "tests/entry.rs"
name = "integration"
[dev-dependencies]
assert_cmd = "2.0.7"
ctor = "0.1.26"
predicates = "2.1.5"
tempfile = "3.3.0"
[features]
default = ["unix_socket"]
unix_socket = []
tcp = []
[profile.release]
strip = true # Automatically strip symbols from the binary.
opt-level = "z" # Optimize for size.
lto = true