-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
71 lines (66 loc) · 1.78 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[package]
name = "jppe"
version = "1.1.1"
authors = [
"jankincai <jankincai12@gmail.com>"
]
edition = "2021"
description = "This is a byte stream structured serialization and deserialization library."
repository = "https://github.com/caizhengxin/jppe-rs"
homepage = "https://github.com/caizhengxin/jppe-rs"
readme = "README.md"
# https://crates.io/category_slugs
categories = [
"encoding",
"parser-implementations",
]
keywords = [
"jppe-rs",
"byte",
"serialization",
"parsing",
"stream",
]
license = "MIT OR Apache-2.0"
include = [
"src/*",
"benches/*",
"examples/*",
"Cargo.toml",
"LICENSE*",
"README.md",
]
rust-version = "1.56"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [
"derive",
"crates/jget-rs",
"crates/jget-rs/derive",
"crates/jdefault-rs",
]
[features]
default = ["std"]
derive = ["jppe_derive"]
jdefault = ["jdefault_derive"]
full = [
"jppe_derive",
"jdefault_derive",
"jget",
"serde"
]
std = ["jkcenum/std"]
[dependencies]
jppe_derive = { path = "derive", version = "1.1.1", optional = true }
jdefault_derive = { path = "crates/jdefault-rs", version = "0", optional = true }
jget = { path = "crates/jget-rs", version = "0", features = ["derive"], optional = true }
serde = { version = "1.0", default-features = false, optional = true }
thiserror-no-std = "2.0"
thiserror = "1"
jkcenum = { version = "0.3.2", default-features = false, features = ["derive"] }
[dev-dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
jppe_derive = { path = "derive", version = "1.1.1" }
jget = { path = "crates/jget-rs", version = "0", features = ["derive"] }
jdefault_derive = { path = "crates/jdefault-rs", version = "0" }