-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (40 loc) · 1.07 KB
/
Cargo.toml
File metadata and controls
46 lines (40 loc) · 1.07 KB
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
44
45
46
[package]
name = "fn-ptr"
version = "0.9.1"
description = "A utility crate for introspecting and rewriting function pointer types at compile time."
repository = "https://github.com/OpenByteDev/fn-ptr"
documentation = "https://docs.rs/fn-ptr"
license = "MIT"
authors = ["OpenByte <development.openbyte@gmail.com>"]
edition = "2024"
categories = ["no-std", "no-std::no-alloc", "rust-patterns"]
keywords = ["fn", "function", "fn_traits"]
[dependencies]
ffi-opaque = "2.0"
konst = { version = "0.4", features = ["cmp"], default-features = false }
cfg-tt = "0.3"
[dev-dependencies]
static_assertions = "1.1"
[build-dependencies]
cargo-emit = "0.2"
build-target = "0.8"
rustc_version = "0.4"
[features]
default = []
stable = []
nightly = []
abi_vectorcall = ["nightly"]
max-arity-12 = []
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = [
'cfg(nightly_build)',
'cfg(has_abi_cdecl)',
'cfg(has_abi_stdcall)',
'cfg(has_abi_fastcall)',
'cfg(has_abi_thiscall)',
'cfg(has_abi_vectorcall)',
'cfg(has_abi_win64)',
'cfg(has_abi_sysv64)',
'cfg(has_abi_aapcs)',
'cfg(has_abi_efiapi)'
]}