-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
26 lines (23 loc) · 850 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
[package]
edition = "2021"
name = "moveref"
version = "1.0.0"
authors = ["silvanshade <[email protected]>"]
license = "Apache-2.0 WITH LLVM-exception"
repository = "https://github.com/silvanshade/moveref"
documentation = "https://silvanshade.github.io/moveref/moveref"
description = "Types and traits for safe C++ style placement initialization and move semantics"
categories = ["compilers", "external-ffi-bindings", "memory-management", "no-std", "rust-patterns"]
keywords = ["C++", "allocation", "ffi", "memory", "references"]
[features]
alloc = []
std = ["alloc", "tracing/std"]
debug = ["tracing"]
default = ["std", "cxx"]
cxx = ["cxx/c++20"]
valgrind = []
[dependencies]
cxx = { version = "1.0", optional = true }
tracing = { version = "0.1", optional = true, features = ["attributes"] }
[dev-dependencies]
seahash = "4.1"