-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 621 Bytes
/
Cargo.toml
File metadata and controls
27 lines (24 loc) · 621 Bytes
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
[package]
name = "ffi-closure"
description = "Send and recevie closures through FFI"
repository = "https://github.com/Aandreba/ffi-closure"
version = "1.1.0"
edition = "2021"
license = "MIT"
keywords = ["ffi", "closure", "c", "abi"]
categories = [
"data-structures",
"development-tools::ffi",
"external-ffi-bindings",
"no-std",
"rust-patterns",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
nightly = []
[dependencies]
cfg-if = "1.0.0"
docfg = "0.1.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]