-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
50 lines (43 loc) · 1.11 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
[package]
name = "notmuch-mailmover"
version = "0.6.0"
authors = ["Michael Adler <therisen06@gmail.com>"]
description = "Move notmuch tagged mails into Maildir folders"
homepage = "https://github.com/michaeladler/notmuch-mailmover"
license = "Apache-2.0"
edition = "2021"
[lib]
name = "nm_mailmover"
path = "src/lib/mod.rs"
[[bin]]
name = "notmuch-mailmover"
path = "src/main.rs"
[profile.release]
lto = true
panic = "abort"
codegen-units = 1
[dependencies]
uuid = { version = "1.10.0", features = ["v4"] }
anyhow = "1.0.91"
env_logger = "0.11.5"
log = "0.4.22"
notmuch = "0.8.0"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9.34"
directories = "5.0.1"
shellexpand = "3.0.0"
clap = { version = "4.5.18", features = [ "derive", "cargo" ] }
git-version = "0.3.9"
konst = "0.3"
mlua = { version = "0.10.1", features = ["lua54", "serialize", "send"] }
[build-dependencies]
clap = { version = "4.5.18", features = [ "derive", "cargo" ] }
clap_complete = "4.5.34"
clap_mangen = "0.2.24"
git-version = "0.3.9"
flate2 = "1.0.17"
konst = "0.3"
[dev-dependencies]
regex = "1.11.1"
[features]
vendored = ["mlua/vendored"]