-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (27 loc) · 1.01 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 = "ksc"
version = "0.1.0"
authors = ["Mingun <[email protected]>"]
edition = "2021"
license = "MIT"
repository = "https://github.com/Mingun/ksc-rs"
description = "Alternative [Kaitai Struct](https://kaitai.io) compiler, written in pure Rust"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bigdecimal = "0.4"
indexmap = { version = "2.0", features = ["serde"] }
lazy_static = "1.4"
peg = "0.8"
regex = "1.5"
serde = { version = "1.0", features = ["derive"] }
# When update version check `impl Hash for Scalar`, it should be the same as
# `impl Hash for serde_yml::Value` for consistency
serde_yml = "0.0.12"
[dev-dependencies]
pretty_assertions = "1.0"
test-generator = "0.3"
[features]
# When enabled, the compiler will preserve compatibility with the original compiler
# (https://github.com/kaitai-io/kaitai_struct_compiler), otherwise in some cases it
# will work differently. See readme.md for full list of differencies
compatible = []