-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (29 loc) · 865 Bytes
/
Cargo.toml
File metadata and controls
33 lines (29 loc) · 865 Bytes
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
[package]
name = "gbx-header"
version = "0.6.0"
authors = ["Markus Becker <mtib.becker@gmail.com>"]
edition = "2018"
license = "Apache-2.0"
license-file = "LICENSE.md"
description = "Partial parser for GBX files"
homepage = "https://github.com/mtib/gbx-header"
documentation = "https://docs.rs/gbx-header"
repository = "https://github.com/mtib/gbx-header"
readme = "README.md"
keywords = ["parser", "files", "util", "cli"]
categories = ["command-line-utilities", "parser-implementations"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "gbx_header"
path = "src/lib.rs"
[[bin]]
name = "gbx-info"
path = "src/bin.rs"
[dependencies]
clap = "2.33.0"
serde = { version = "1.0.120", features = ["derive"] }
serde_json = "1.0"
xml-rs = "0.8.3"
ansi_term = "0.12.1"
byteorder = "1.4.2"
enum-repr = "0.2.6"