summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: f255a9f44fdba72bdc6814d29db3b668a1d07be7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[package]
name = "qif_parser"
version = "0.1.0"
authors = ["Justin Worthe <justin@worthe-it.co.za>"]
edition = "2018"

[dependencies]
regex = "1.7"
lazy_static = "1"
clap = { version = "4.1", features = ["derive"] }

[profile.dev.package."*"]
opt-level = 3
# incremental compile is rarely useful for dependencies since they change
# infrequently, and having this on breaks sccache
incremental = false