-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (30 loc) · 909 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
[package]
name = "payment-processor"
version = "0.1.0"
edition = "2021"
authors = ["Patrice Billaut"]
description = "A simple toy payment processor."
license = "MIT"
repository = "https://github.com/pbillaut/payment-processor-rs"
keywords = ["experiment", "payment-processor"]
categories = ["finance", "parser-implementations"]
[dependencies]
anyhow = "1.0"
clap = { version = "4.5.17", features = ["derive"] }
csv = "1.3.0"
rust_decimal = "1.36"
rust_decimal_macros = "1.36"
serde = { version = "1.0.210", features = ["derive"] }
thiserror = "1.0.63"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
test-log = { version = "0.2.16", features = ["trace"] }
[profile.perf]
# Profile for memory profiling
inherits = "release"
debug = true
[[bench]]
name = "bench_main"
harness = false