-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (33 loc) · 1.02 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
[package]
name = "cemtexer"
version = "0.1.4"
edition = "2021"
authors = ["Geoffrey Borough <[email protected]>"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/gborough/cemtexer"
repository = "https://github.com/gborough/cemtexer"
documentation = "https://docs.rs/cemtexer"
description = """
An utility for generating and validating Australian Banking Association
Cemtex file format
"""
keywords = ["aba", "csv", "cemtex", "parser"]
categories = ["command-line-utilities", "encoding", "parser-implementations"]
publish = ["crates-io"]
[dependencies]
nom = "7.1.3"
csv = "1.2.2"
rand = "0.8.5"
regex = "1.8.4"
thiserror = "1.0.40"
lazy_static = "1.4.0"
serde = { version = "1.0.164", features = ["derive"] }
config = { version = "0.13.3", features = ["toml"] }
clap = { version = "4.3.5", features = ["derive"] }
tokio = { version = "1.28.2", features = ["full"] }
time = { version = "0.3.22", features = ["formatting", "macros", "parsing"] }
[profile.release]
lto = "thin"
opt-level = 2
strip = "debuginfo"