-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
54 lines (48 loc) · 1.38 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
#
# Tackler-NG 2022-2024
#
# SPDX-License-Identifier: Apache-2.0
#
[workspace]
members = [
"tackler-rs",
"tackler-api",
"tackler-core",
"tackler-cli",
]
resolver = "2"
[workspace.package]
edition = "2021"
license = "Apache-2.0"
homepage = "https://tackler.e257.fi/"
repository = "https://github.com/e257-fi/tackler-ng"
categories = [ "finance", "parser-implementations" ]
keywords = [ "accounting", "finance" ]
include = [ "src/**/*", "CRATES.md", "README.adoc", "build.rs" ]
rust-version = "1.82.0"
[workspace.lints.rust]
rust_2018_idioms = { level = "warn", priority = -1 }
unreachable_pub = "warn"
unused_lifetimes = "warn"
[profile.release]
lto = true
codegen-units = 1
[profile.test]
# tackler-core tests would be too slow without this
opt-level = 3
[profile.bench]
lto = true
codegen-units = 1
[workspace.dependencies]
base64 = { version = "0.22.1" }
indoc = "2.0.5"
jiff = { version = "0.1.21", features = [ "serde" ]}
rust_decimal = { version = "1.36.0", features= ["serde-with-arbitrary-precision" ]}
rust_decimal_macros = { version = "1.36" }
uuid = { version = "1.11.1", default-features = false, features = [ "serde" ] }
log = "0.4.22"
regex = { version = "1.11.1" }
serde = { version = "1.0.217", default-features = false }
serde_json = { version = "1.0.135" , default-features = false, features = [ "std", "arbitrary_precision" ] }
itertools = "0.13.0"
tikv-jemallocator = "0.6.0"