-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
53 lines (44 loc) · 1.06 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
51
52
53
[package]
name = "const_panic"
version = "0.2.11"
authors = ["rodrimati1992 <[email protected]>"]
edition = "2021"
license = "Zlib"
description = "const panic with formatting"
rust-version = "1.57"
readme="./README.md"
keywords = ["no-std", "format", "const", "panic"]
categories = ["no-std"]
repository = "https://github.com/rodrimati1992/const_panic/"
include = [
"Cargo.toml",
"src/**/*.rs",
"./README.md",
"LICENSE-ZLIB.md",
]
[workspace]
[dependencies.typewit]
version = "1.9.0"
optional = true
[dependencies.const_panic_proc_macros]
version = "=0.2.1"
path = "./const_panic_proc_macros/"
optional = true
[dev-dependencies.arrayvec]
version = "0.7"
[dev-dependencies.rand]
version = "0.8.4"
default_features = false
features = ["small_rng"]
[features]
default = ["non_basic"]
rust_1_64 = []
rust_1_82 = ["rust_1_64"]
rust_latest_stable = ["rust_1_82"]
non_basic = ["typewit"]
docsrs = []
derive = ["const_panic_proc_macros", "non_basic"]
# private feature
test = []
[package.metadata.docs.rs]
features = ["derive", "rust_latest_stable", "docsrs"]