-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (41 loc) · 1.17 KB
/
Cargo.toml
File metadata and controls
49 lines (41 loc) · 1.17 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
43
44
45
46
47
48
49
[package]
name = "fsmentry"
version.workspace = true
license.workspace = true
edition.workspace = true
repository.workspace = true
documentation.workspace = true
homepage.workspace = true
readme.workspace = true
description.workspace = true
[lib]
proc-macro = true
[dependencies]
fsmentry-core.workspace = true
proc-macro2 = "1"
quote = "1"
syn = { version = "2" }
[dev-dependencies]
derive-quickcheck-arbitrary = "0.1.3"
proc-macro2 = { version = "1.0.68", default-features = false }
quickcheck = "1.0.3"
syn = { version = "2", features = ["extra-traits"] }
trybuild = { version = "1.0.85", features = ["diff"] }
assert_cmd = "2.0.12"
prettyplease = "0.2.31"
expect-test = "1.5.1"
[workspace.package]
version = "0.4.0"
license = "MIT OR Apache-2.0"
edition = "2021"
repository = "https://github.com/aatifsyed/fsmentry"
documentation = "https://docs.rs/fsmentry"
homepage = "https://crates.io/crates/fsmentry"
readme = "README.md"
description = "Finite State Machines with an entry API and data storage"
[workspace]
members = ["core", "cli"]
[workspace.dependencies]
fsmentry-core = { version = "0.4.0", path = "core" }
[package.metadata.docs.rs]
rustdoc-args = ["--document-private-items"]