-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (31 loc) · 980 Bytes
/
Copy pathCargo.toml
File metadata and controls
38 lines (31 loc) · 980 Bytes
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
[package]
name = "cuisiner"
version.workspace = true
edition.workspace = true
authors.workspace = true
description = "Cook up some conversions to and from C-style binary layouts."
repository.workspace = true
license.workspace = true
keywords.workspace = true
categories.workspace = true
[workspace]
resolver = "2"
members = ["cuisiner_derive"]
[workspace.package]
version = "0.0.6"
edition = "2024"
authors = ["Tom Anderson <tom@ando.sh>"]
repository = "https://github.com/andogq/cuisiner"
license = "MIT OR Apache-2.0"
keywords = ["binary-encoding", "binary-format", "c", "convert", "serialization"]
categories = ["encoding", "parsing", "rust-patterns"]
[workspace.dependencies]
cuisiner = { path = "." }
cuisiner_derive = { path = "cuisiner_derive", version = "0.0.6" }
[dependencies]
thiserror = "2.0.12"
zerocopy = { version = "0.8.24", features = ["derive", "std"] }
cuisiner_derive = { workspace = true }
assert_layout = "0.0.1"
[dev-dependencies]
proptest = "1.6.0"