-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
36 lines (31 loc) · 997 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
35
36
[package]
name = "doublecount"
version = "0.8.2"
description = "A double entry accounting system/library."
keywords = ["financial", "currency", "accounting", "exchange", "rate"]
categories = ["science", "mathematics"]
authors = ["Luke Frisken <l.frisken@gmail.com>"]
edition = "2018"
license = "MIT"
repository = "https://github.com/kellpossible/doublecount"
readme = "README.md"
[badges]
maintenance = { status = "actively-developed" }
[features]
default = []
serde-support = ["commodity/serde-support", "rust_decimal/serde", "serde", "serde_derive"]
[dependencies]
chrono = "0.4"
nanoid = "0.3.0"
thiserror = "1.0"
rust_decimal = { version = "1", default-features = false }
commodity = "0.4"
serde_derive = { version = "1.0", optional = true}
serde = { version = "1.0", optional = true, features = ["derive"] }
arrayvec = "0.5"
[dev-dependencies]
serde_json = { version = "1.0" } # for unit tests
doc-comment = "0.3"
insta = "0.16.0"
[package.metadata.docs.rs]
features = ["serde-support"]