-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
41 lines (37 loc) · 978 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
[package]
name = "mt940"
description = "A strict MT940 bank statement parser"
version = "1.0.2"
authors = ["Sven-Hendrik Haase <[email protected]>"]
repository = "https://github.com/svenstaro/mt940-rs"
license = "MIT"
readme = "README.md"
keywords = ["mt940", "sepa", "banking", "fints", "hbci"]
categories = ["parser-implementations", "command-line-utilities", "command-line-interface"]
edition = "2021"
[profile.release]
lto = true
codegen-units = 1
[profile.bench]
lto = true
codegen-units = 1
[dependencies]
clap = { version = "4", features = ["derive", "wrap_help"] }
chrono = { version = "0.4", features = ["serde"] }
deunicode = "1.0"
rust_decimal = { version = "1.0", features = ["serde"] }
thiserror = "2.0"
log = "0.4"
pest = "2"
pest_derive = "2"
serde = "1.0.140"
serde_derive = "1.0.140"
serde_json = "1.0.82"
strum = "0.26"
strum_macros = "0.26"
[dev-dependencies]
pretty_assertions = "1.0"
rstest = "0.24"
doc-comment = "0.3"
proptest = "1.0.0"
regex = "1"