-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 711 Bytes
/
Cargo.toml
File metadata and controls
27 lines (24 loc) · 711 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
[package]
name = "contracts"
version = "0.6.7"
description = "Design-by-contract attributes"
authors = ["karroffel <therzog@mail.de>"]
categories = ["development-tools", "development-tools::procedural-macro-helpers"]
keywords = ["design-by-contract", "precondition", "postcondition", "invariant", "verification"]
repository = "https://github.com/x52dev/contracts"
license = "MPL-2.0"
edition = "2018"
rust-version = "1.65"
[lib]
name = "contracts"
path = "src/lib.rs"
proc-macro = true
[features]
disable_contracts = []
override_debug = []
override_log = []
mirai_assertions = []
[dependencies]
proc-macro2 = "1"
quote = "1"
syn = { version = "2", features = ["extra-traits", "full", "visit", "visit-mut"] }