-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
74 lines (61 loc) · 1.71 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# See https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "winvoice-cli"
version = "0.3.1"
authors = ["Iron-E <[email protected]>"]
description = "CLI frontend for Winvoice"
categories = ["command-line-utilities", "config", "date-and-time"]
edition = "2021"
keywords = ["invoice", "freelance", "cli", "command", "line", "command-line"]
license = "GPL3"
readme = "README.md"
repository = "https://www.github.com/Iron-E/winvoice"
[dependencies]
async-trait = "0.1"
dialoguer = "0.10"
futures = "0.3"
humantime = "2"
money2 = "1"
serde = "1"
serde_yaml = "0.8"
strum = "0.24"
thiserror = "1"
toml = "0.5"
[dependencies.clap]
features = ["derive"]
version = "3"
[dependencies.sqlx]
features = ["runtime-tokio-rustls", "tls"]
version = "0.5"
[dependencies.tokio]
features = ["fs", "macros", "rt"]
version = "1"
[dependencies.winvoice-adapter]
branch = "release/0.19"
default-features = false
git = "https://github.com/Iron-E/winvoice-adapter"
[dependencies.winvoice-adapter-postgres]
branch = "release/0.9"
git = "https://github.com/Iron-E/winvoice-adapter-postgres"
optional = true
[dependencies.winvoice-config]
branch = "release/0.8"
git = "https://github.com/Iron-E/winvoice-config"
[dependencies.winvoice-export]
branch = "release/0.3"
features = ["markdown"]
git = "https://github.com/Iron-E/winvoice-export"
[dependencies.winvoice-match]
branch = "release/0.9"
features = ["serde"]
git = "https://github.com/Iron-E/winvoice-match"
[dependencies.winvoice-schema]
branch = "release/0.12"
features = ["serde"]
git = "https://github.com/Iron-E/winvoice-schema"
[dev-dependencies]
dotenvy = "0.15"
pretty_assertions = "1"
[features]
default = ["postgres"]
postgres = ["winvoice-adapter-postgres", "sqlx/postgres"]