-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (33 loc) · 873 Bytes
/
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
[workspace]
members = [
"examples/as_string",
"examples/backwards_compat",
"examples/json",
"examples/opcode",
"rkyv*",
]
default-members = [
"rkyv",
"rkyv_dyn",
"rkyv_dyn_test",
"rkyv_test",
"rkyv_typename",
]
[workspace.package]
version = "0.8.0"
authors = ["David Koloski <djkoloski@gmail.com>"]
edition = "2021"
license = "MIT"
documentation = "https://docs.rs/rkyv"
repository = "https://github.com/rkyv/rkyv"
[workspace.dependencies]
bytecheck = { version = "0.7", default-features = false }
hashbrown = "0.14"
proc-macro2 = "1.0"
ptr_meta = { version = "0.2", default-features = false }
quote = "1.0"
rend = { version = "0.5", git = "https://github.com/rkyv/rend", branch = "master", default-features = false }
rkyv_derive = { version = "=0.8.0", path = "rkyv_derive" }
seahash = "4.0"
syn = "2.0"
wasm-bindgen-test = "0.3"