-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (37 loc) · 923 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
43
[package]
name = "lola-sumup"
version = "0.2.0"
authors = ["Urs Joss <[email protected]>"]
edition = "2021"
description = "A cli program to create LoLa specific exports from monthly SumUp reports"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.5.4", features = ["derive"] }
serde = { version = "1.0.200", features = ["derive"] }
chrono= { version = "0.4.38", features = ["serde"] }
strum = { version = "0.26.2" }
strum_macros = { version = "0.26.2" }
[dependencies.polars]
version = "0.45.0"
features = [
"lazy",
"dtype-date",
"temporal",
"strings",
"concat_str",
"regex",
"round_series",
"is_in",
"semi_anti_join",
"abs",
]
[dev-dependencies]
pretty_assertions = "1.4.0"
rstest = "0.23.0"
[profile.dev]
opt-level=1
[profile.release]
lto = true
codegen-units = 1
strip = true