-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (53 loc) · 1.27 KB
/
Cargo.toml
File metadata and controls
59 lines (53 loc) · 1.27 KB
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
[package]
authors = ["Xavier Lau <x@acg.box>"]
categories = [
"algorithms",
"encoding",
"no-std",
"parsing",
"wasm",
]
description = "A collection of Array/Bytes/Hex utilities with full No-STD compatibility."
edition = "2024"
homepage = "https://hack.ink/array-bytes"
keywords = [
"array",
"hex",
"no-std",
"slice",
"vec",
]
license = "Apache-2.0/GPL-3.0"
name = "array-bytes"
readme = "README.md"
repository = "https://github.com/hack-ink/array-bytes"
version = "9.3.0"
[package.metadata.docs.rs]
all-features = true
[profile.ci-dev]
incremental = false
inherits = "dev"
[features]
serde = [
# crates.io
"dep:serde",
"serde_bytes",
]
[dependencies]
# crates.io
serde = { version = "1.0", optional = true, default-features = false }
serde_bytes = { version = "0.11", optional = true, default-features = false, features = ["alloc"] }
smallvec = { version = "1.15" }
thiserror = { version = "2.0", default-features = false }
[dev-dependencies]
# crates.io
const-hex = { version = "1.17" }
criterion = { version = "0.8" }
faster-hex = { version = "0.10" }
hex_crate = { package = "hex", version = "0.4" }
rustc-hex = { version = "2.1" }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
[[bench]]
harness = false
name = "bench"