-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
39 lines (34 loc) · 933 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
36
37
38
39
[package]
name = "zc"
version = "0.4.0"
authors = ["avitex <[email protected]>"]
edition = "2018"
description = "Self-referential zero-copy structure"
categories = ["no-std", "memory-management", "data-structures"]
documentation = "https://docs.rs/zc"
homepage = "https://github.com/avitex/rust-zc"
repository = "https://github.com/avitex/rust-zc"
license = "MIT"
readme = "README.md"
include = ["src/**/*", "tests/**/*", "examples/**/*", "README.md", "LICENSE", "Cargo.toml"]
keywords = ["parsing", "zero-copy"]
[features]
default = ["std", "derive"]
std = ["alloc"]
alloc = ["aliasable"]
derive = ["zc-derive"]
[dependencies]
zc-derive = { version = "0.4", optional = true }
aliasable = { version = "0.1.3", optional = true }
[dev-dependencies]
trybuild = "1.0"
dangerous = "0.8"
once_cell = "1.5"
rustversion = "1"
[workspace]
members = [
".",
"./zc-derive",
]
[patch.crates-io]
zc-derive = { path = "./zc-derive" }