-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
40 lines (33 loc) · 853 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
37
38
39
40
[package]
authors = ["Brayden Banks <[email protected]>"]
categories = []
description = "Type-safe BAIv2 serialization library for Rust"
documentation = "https://docs.rs/baimax/0.1.0/baimax"
keywords = ["bai", "bank", "encoding", "parser", "serde"]
license = "MIT/Apache-2.0"
name = "baimax"
readme = "README.md"
repository = "https://github.com/bb010g/baimax"
version = "0.1.0"
[badges]
[badges.travis-ci]
repository = "bb010g/baimax"
[dependencies]
chrono = "0.4.0"
itertools = "0.6.0"
nom = "3.0.0"
penny = "0.1.0"
void = "1.0.2"
[dependencies.clippy]
optional = true
version = "^0"
[dependencies.serde]
optional = true
version = "1.0.8"
[dependencies.serde_derive]
optional = true
version = "1.0.8"
[features]
default = ["serde-serialize"]
lint = ["clippy"]
serde-serialize = ["chrono/serde", "penny/serde-serialize", "serde", "serde_derive"]