-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Cargo.toml
31 lines (28 loc) · 1.04 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
[workspace]
members = [
"bytecheck",
"bytecheck_derive",
]
resolver = "2"
[workspace.package]
version = "0.8.0"
authors = ["David Koloski <djkoloski@gmail.com>"]
edition = "2021"
rust-version = "1.81"
license = "MIT"
readme = "README.md"
repository = "https://github.com/rkyv/bytecheck"
keywords = ["no_std", "validation", "serialization"]
categories = ["encoding", "no-std", "no-std::no-alloc"]
[workspace.dependencies]
bytecheck = { version = "0.8", path = "bytecheck", default-features = false }
bytecheck_derive = { version = "=0.8.0", path = "bytecheck_derive", default-features = false }
proc-macro2 = { version = "1", default-features = false }
ptr_meta = { version = "0.3", default-features = false }
rancor = { version = "0.1", default-features = false }
simdutf8 = { version = "0.1", default-features = false }
syn = { version = "2", default-features = false }
quote = { version = "1", default-features = false }
[patch.crates-io]
ptr_meta = { git = "https://github.com/rkyv/ptr_meta" }
rancor = { git = "https://github.com/rkyv/rancor" }