-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (29 loc) · 886 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
[package]
name = "dyntable"
version = "0.1.0"
edition = "2021"
description = "Idiomatic and FFI Safe dyn traits"
documentation = "https://docs.rs/dyntable"
readme = "README.md"
repository = "https://github.com/outfoxxed/dyntable"
license = "Apache-2.0 or MIT"
authors = ["outfoxxed <outfoxxed@outfoxxed.me>"]
keywords = ["dyn", "trait", "vtable", "abi", "ffi"]
categories = ["development-tools::ffi", "rust-patterns", "no-std", "no-std::no-alloc"]
exclude = ["COMPARISON.md"]
[features]
default = ["std"]
std = ["alloc"]
allocator_api = ["alloc"]
alloc = []
[dependencies.dyntable-macro]
path = "dyntable-macro"
[dev-dependencies] # test dependencies
trybuild = "^1"
libloading = "^0.7"
# docs.rs-specific configuration
[package.metadata.docs.rs]
# document all features
all-features = true
# defines the configuration attribute `nightlydoc`
rustdoc-args = ["--cfg", "nightlydoc"]