-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (44 loc) · 1.2 KB
/
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
44
45
46
47
48
49
50
[package]
name = "typewit"
version = "1.9.0"
authors = ["rodrimati1992 <rodrimatt1985@gmail.com>"]
rust-version = "1.57.0"
edition = "2021"
license = "Zlib"
description = "type-witness-based abstractions, mostly for emulating polymorphism in const fns"
documentation = "https://docs.rs/typewit/"
readme="./README.md"
keywords = ["const_fn", "GADT", "type_witness", "type-equality", "refl"]
categories = ["no-std", "rust-patterns"]
repository = "https://github.com/rodrimati1992/typewit/"
include = [
"Cargo.toml",
"src/**/*.rs",
"./README.md",
"LICENSE-ZLIB.md",
]
[workspace]
[dependencies.typewit_proc_macros]
version = "=1.8.1"
path = "./typewit_proc_macros"
optional = true
[dev-dependencies.arrayvec]
version = "0.7"
default-features = false
[dev-dependencies.trybuild]
version = "1.0"
[features]
default = ["proc_macros"]
rust_1_61 = []
rust_1_65 = ["rust_1_61"]
rust_stable = ["rust_1_65"]
proc_macros = ["typewit_proc_macros"]
const_marker = []
adt_const_marker = ["rust_stable"]
alloc = []
mut_refs = ["rust_stable"]
nightly_mut_refs = ["mut_refs"]
docsrs = []
__ui_tests = []
[package.metadata.docs.rs]
features = ["alloc", "rust_stable", "nightly_mut_refs", "adt_const_marker", "docsrs"]