-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (53 loc) · 1.55 KB
/
Copy pathCargo.toml
File metadata and controls
55 lines (53 loc) · 1.55 KB
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
[workspace]
resolver = "3"
members = [
"crates/cli",
"crates/core-invoice",
"crates/foundation",
"crates/render-typst",
]
[workspace.dependencies]
# Internal dependencies
klirr-core-invoice = { path = "crates/core-invoice", version = "0.2.15" }
klirr-foundation = { path = "crates/foundation", version = "0.2.15" }
klirr-render-typst = { path = "crates/render-typst", version = "0.2.15" }
# External dependencies
aes-gcm = { version = "=0.10.3", default-features = false, features = [
"aes",
"alloc",
"getrandom",
"zeroize",
] }
base64 = "0.22.1"
bon = "3.6.4"
chrono = "0.4.41"
derive_more = { version = "2.0.1", features = ["full"] }
dirs-next = "2.0.0"
getset = { version = "0.1.4", default-features = false, features = [] }
hex = "0.4.3"
hkdf = { version = "=0.12.4", default-features = false }
indexmap = { version = "2.9.0", features = ["serde"] }
insta = { version = "1.43.1", features = ["ron"] }
lettre = { version = "0.11", default-features = false, features = [
"tokio1-rustls-tls",
"smtp-transport",
"builder",
] }
log = "0.4.27"
pretty_assertions = "1.4.1"
rand = "0.9.1"
rpassword = "7.4.0"
ron = "0.10.1"
rust_decimal = { version = "1.37.2", features = ["macros"] }
secrecy = "0.10.3"
serde = { version = "1", features = ["derive"] }
serde_json = "1.0.114"
sha2 = "0.10.9"
strum = { version = "0.27", features = ["derive"] }
tempfile = { version = "3.20.0" }
test-log = { version = "0.2.17" }
thiserror = "2.0.12"
zeroize = { version = "1.7.0", default-features = false, features = [
"zeroize_derive",
"derive",
] }