-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
28 lines (24 loc) · 860 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
[package]
name = "iso8583"
version = "0.1.1"
authors = ["Rohit Joshi <[email protected]>"]
license = "MIT/Apache-2.0"
description = "Library to Parse ISO-8583 messages"
homepage = "https://github.com/rohitjoshi/iso8583"
repository = "https://github.com/rohitjoshi/iso8583"
documentation = "https://github.com/rohitjoshi/iso8583/blob/master/README.md"
keywords = ["iso8583", "encoding", "decoding", "protocol"]
categories = ["encoding"]
readme = "README.md"
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
[badges]
travis-ci = { repository = "rohitjoshi/iso8583", branch = "master" }
codecov = { repository = "rohitjoshi/iso8583", branch = "master", service = "github" }
[dependencies]
log = "0.3.8"
bit-array="0.4.4"
typenum= "1.9.0"
yaml-rust="0.4.0"
serde = "1.0"
serde_derive = "1.0"
serde_yaml = "0.7"