-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
31 lines (26 loc) · 903 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
[workspace]
default-members = [".", "msgpack-schema-impl", "msgpack-value"]
[package]
name = "msgpack-schema"
version = "1.1.0"
authors = ["Yuichi Nishiwaki <[email protected]>"]
edition = "2021"
description = "A specification language for MessagePack data format"
license = "MIT"
repository = "https://github.com/Idein/msgpack-schema"
documentation = "https://docs.rs/msgpack-schema"
categories = ["encoding"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["proptest"]
proptest = ["msgpack-value/proptest"]
[dependencies]
msgpack-schema-impl = { version = "=1.1.0", path = "./msgpack-schema-impl" }
msgpack-value = { version = "=1.1.0", path = "./msgpack-value", default-features = false }
rmp = "0.8"
thiserror = "^1.0.25"
byteorder = "1"
[dev-dependencies]
trybuild = "1.0"
proptest = "1"
proptest-derive = "0.3"