-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
31 lines (29 loc) · 867 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
[package]
name = "iso8583_rs"
version = "0.1.10"
authors = ["Raghavendra Balgi <rkbalgi@gmail.com>"]
edition = "2018"
description = "A library to define ISO8583 specifications and parse, assemble, send/receive (via TCP) ISO8583 messages"
license = "Apache-2.0"
publish = true
repository = "https://github.com/rkbalgi/iso8583_rs"
readme = "README.md"
keywords = ["iso8583", "parser", "crypto", "pin", "mac"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
lazy_static = "1.4.0"
hex = "0.4.2"
byteorder = "1.3.4"
log = "0.4.8"
simplelog = "0.8.0"
serde = { version = "1.0.113", features = ["derive"] }
serde_yaml = "0.8.13"
encoding8 = "0.3.2"
hexdump = "0.1.0"
rand = "0.7.3"
des = "0.4.0"
generic-array = "0.14.2"
odds = "0.4.0"
block-modes = "0.5.0"
hex-literal = "0.2.1"
witchcraft-metrics = "0.1.1"