-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
63 lines (51 loc) · 1.71 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
[package]
name = "stdto"
version = "0.14.0"
edition = "2021"
authors = ["just-do-halee <just.do.halee@gmail.com>"]
categories = ["development-tools", "rust-patterns", "encoding"]
keywords = ["serde", "bytes", "hash", "json", "hex"]
description = "Stdto provides a set of functional traits for conversion between various data representations."
homepage = "https://github.com/just-do-halee/stdto"
repository = "https://github.com/just-do-halee/stdto"
license = "MIT OR Apache-2.0"
readme = "README.md"
exclude = ["RELEASE.md", "release.toml", ".gitignore", ".github/", "crates/"]
[workspace]
members = ["crates/*"]
[workspace.package]
edition = "2021"
authors = ["just-do-halee <just.do.halee@gmail.com>"]
description = "Stdto provides a set of functional traits for conversion between various data representations."
categories = ["development-tools", "rust-patterns", "encoding"]
keywords = ["serde", "bytes", "hash", "json", "hex"]
homepage = "https://github.com/just-do-halee/stdto"
repository = "https://github.com/just-do-halee/stdto"
license = "MIT OR Apache-2.0"
readme = "README.md"
[dependencies]
stdto_core = { version = "0.14", path = "crates/stdto_core", default-features = false }
stdto_derive = { version = "0.14", path = "crates/stdto_derive", optional = true }
[dev-dependencies]
sha2 = "0.10"
[features]
default = [
"derive",
"serde",
"bytes",
"hash",
"json",
"yaml",
"toml",
"file",
"hex",
]
derive = ["dep:stdto_derive"]
serde = ["stdto_core/serde"]
bytes = ["serde", "stdto_core/bytes"]
hash = ["bytes", "stdto_core/hash"]
json = ["serde", "stdto_core/json"]
yaml = ["serde", "stdto_core/yaml"]
toml = ["serde", "stdto_core/toml"]
file = ["json", "yaml", "toml"]
hex = ["stdto_core/hex"]