-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (27 loc) · 1.13 KB
/
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 = "listinfo"
version = "0.4.8"
authors = ["Ronny Chan <[email protected]>"]
edition = "2018"
license = "MIT"
keywords = ["clrmamepro", "mame", "dat", "listinfo", "parse"]
description = "A zero-copy MAME ListInfo format DAT files parser and deserializer."
readme = "README.md"
categories = ["parser-implementations", "emulators", "text-processing"]
repository = "https://github.com/SnowflakePowered/listinfo-rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["std"]
std = []
deserialize = ["serde", "hex"]
test_deserialize = ["deserialize", "serde/derive", "serde_bytes"]
[dependencies]
nom = { version = "7", default-features = false, features = ["alloc"] }
serde = { version = "1.0", default-features = false, features = ["alloc"], optional = true }
serde_bytes = { version = "0.11", optional = true }
hex = { version = "0.4.3", default-features = false, features = ["alloc"], optional = true }
indexmap = { version = "1.4.0" }
[package.metadata.docs.rs]
features = [ "test_deserialize", "std" ]
[package.metadata.playground]
features = [ "std", "deserialize" ]