forked from anodized-rs/anodized
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (40 loc) · 1.16 KB
/
Copy pathCargo.toml
File metadata and controls
42 lines (40 loc) · 1.16 KB
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
[workspace]
members = [
"crates/anodized",
"crates/anodized-core",
"crates/anodized-fmt",
"crates/anodized-logic",
"crates/anodized-macros",
"crates/test-util",
"fuzz",
]
resolver = "2"
[workspace.package]
version = "0.5.1"
edition = "2024"
license = "MIT OR Apache-2.0"
repository = "https://github.com/anodized-rs/anodized"
description = "A common specification layer for Rust"
categories = [
"development-tools",
"development-tools::procedural-macro-helpers",
]
keywords = [
"correctness",
"design-by-contract",
"fuzzing",
"testing",
"verification",
]
[workspace.dependencies]
anodized-core = { version = "0.5.1", path = "crates/anodized-core" }
anodized-fmt = { version = "0.5.1", path = "crates/anodized-fmt" }
anodized-logic = { version = "0.5.1", path = "crates/anodized-logic" }
anodized-macros = { version = "0.5.1", path = "crates/anodized-macros" }
test-util = { path = "crates/test-util" }
num-bigint = "0.4.6"
pretty_assertions = "1"
prettyplease = "0.2"
proc-macro2 = { version = "1.0", features = ["span-locations"] }
quote = "1.0"
syn = { version = "2.0", features = ["extra-traits", "full", "visit", "visit-mut"] }