-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
33 lines (27 loc) · 821 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
[package]
name = "dyn_safe"
version = "0.0.4" # Keep in sync (& also with `src/proc_macros/Cargo.toml`)
authors = ["Daniel Henry-Mantilla <daniel.henry.mantilla@gmail.com>"]
edition = "2018"
license = "Zlib OR MIT OR Apache-2.0"
documentation = "https://docs.rs/dyn_safe"
repository = "https://github.com/danielhenrymantilla/dyn_safe.rs"
homepage = "https://crates.io/crates/dyn_safe"
readme = "README.md"
description = "Take control of the Semver hazard of the `dyn` safety of your traits!"
keywords = [
"semver",
"dyn",
"object",
"safety",
"safe",
]
categories = [
"rust-patterns",
]
[dependencies.proc_macros]
version = "0.0.4" # Keep in sync (& also with `src/proc_macros/Cargo.toml`)
path = "src/proc_macros"
package = "dyn_safe-proc_macros"
[workspace]
members = ["src/proc_macros"]