-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
44 lines (34 loc) · 823 Bytes
/
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
[lib]
proc-macro = true
[package]
name = "visibility"
version = "0.1.1"
authors = [
"Daniel Henry-Mantilla <daniel.henry.mantilla@gmail.com>",
]
edition = "2021"
license = "Zlib OR MIT OR Apache-2.0"
documentation = "https://docs.rs/visibility"
repository = "https://github.com/danielhenrymantilla/visibility.rs"
homepage = "https://crates.io/crates/visibility"
readme = "README.md"
description = "Attribute to override the visibility of items (useful in conjunction with cfg_attr)"
keywords = [
"visibility",
"pub",
"override",
"conditional",
"compilation",
]
categories = [
"rust-patterns",
]
[dependencies]
syn = { version = "2.0.0", features = ["full"] }
quote = "1.0.26"
proc-macro2 = "1.0.60"
[features]
nightly = []
[package.metadata.docs.rs]
features = ["nightly"]
[workspace]