forked from capnproto/capnproto-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (31 loc) · 1012 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
40
41
42
43
[package]
name = "capnp"
version = "0.14.7"
authors = [ "David Renshaw <[email protected]>" ]
license = "MIT"
description = "runtime library for Cap'n Proto data encoding"
repository = "https://github.com/capnproto/capnproto-rust"
documentation = "https://docs.capnproto-rust.org/capnp/"
edition = "2018"
readme = "README.md"
keywords = ["encoding", "protocol", "serialization"]
[lib]
name = "capnp"
path = "src/lib.rs"
[dependencies]
quickcheck = { version = "0.9", optional = true }
[dev-dependencies]
quickcheck = "0.9"
[features]
default = ["std"]
rpc_try = []
# If enabled, relaxes alignment requirements on segments.
# This has a performance cost on some targets (e.g. ARMv6).
unaligned = []
# If disabled, turns on no_std, which tells rustc to not link
# with the Rust standard library.
std = []
# If enabled, ReadLimiter will use `AtomicUsize` instead of `Cell<usize>`, allowing
# message readers to be `Sync`. Note that AtomicUsize is not supported by all
# rustc targets.
sync_reader = []