-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
26 lines (22 loc) · 875 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
[workspace]
members = ["boleto-utils", "boleto-utils-cli"]
default-members = ["boleto-utils", "boleto-utils-cli"]
resolver = "2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace.dependencies]
boleto-utils = { path = "boleto-utils/", version = "0.1.2"}
serde = { version = "1.0", features = ["derive"] }
[workspace.package]
edition = "2021"
authors = ["Fernando Sávio <admin@fsavio.dev>"]
description = "Utility library to parse brazilian payment slip (aka 'boleto') barcodes."
readme = "README.md"
homepage = "https://github.com/fernandosavio/boleto-utils/"
repository = "https://github.com/fernandosavio/boleto-utils/"
license = "MIT"
keywords = ["barcode", "boleto", "codigo-de-barras", "linha-digitavel"]
categories = ["parser-implementations"]
[profile.release]
codegen-units = 1
lto = true
panic = "abort"