-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (32 loc) · 899 Bytes
/
Cargo.toml
File metadata and controls
40 lines (32 loc) · 899 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
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "cifg"
version = "1.0.3"
categories = ["no-std", "rust-patterns"]
description = "A macro for defining #[cfg] if/else blocks; alternate to cfg-if."
keywords = ["cfg", "macro"]
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
[package.metadata.docs.rs]
features = ["docs"]
[workspace]
members = ["diag-attr"]
resolver = "2"
[workspace.package]
authors = ["Conner Blair <conner@probablyyes.software>"]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Probably-Yes-Software-LLC/cifg"
[workspace.dependencies]
base64 = "0.22.1"
macro_railroad = "0.1.6"
proc-macro2 = "1.0.85"
quote = "1.0.36"
syn = "2.0.66"
[features]
docs = ["dep:cifg-diag-attr"]
[dependencies.cifg-diag-attr]
optional = true
path = "diag-attr"
version = "1.0.1"