-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (42 loc) · 1.82 KB
/
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
45
[workspace.package]
authors = ["Vadim Belman"]
categories = ["concurrency", "development-tools::procedural-macro-helpers", "rust-patterns"]
edition = "2021"
exclude = ["Makefile.toml", "release.toml"]
keywords = ["lazy", "field", "macro", "builder", "struct"]
license-file = "LICENSE"
repository = "https://github.com/vrurg/fieldx.git"
[workspace]
members = ["fieldx", "fieldx_aux", "fieldx_derive", "fieldx_derive_support"]
resolver = "2"
[workspace.dependencies]
async-trait = "0.1"
cargo-toolchain = "0.1"
crossbeam = "0.8"
darling = ">=0.20.7"
delegate = "0.13"
enum_dispatch = "0.3"
fieldx = { version = "0.1.8", path = "fieldx" }
fieldx_aux = { version = "0.1.8", path = "fieldx_aux" }
fieldx_derive = { version = "0.1.8", path = "fieldx_derive" }
fieldx_derive_support = { version = "0.1.8", path = "fieldx_derive_support" }
getset = "0.1"
num_cpus = "1.16"
once_cell = "1.20"
parking_lot = "0.12"
paste = "1.0"
proc-macro2 = "1.0"
quote = "1.0"
rust-format = "0.3"
rustc_version = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.133"
syn = "2.0"
thiserror = "2.0"
tokio = { version = "1.39", default-features = false }
trybuild = ">=1.0"
[patch.crates-io]
fieldx = { path = "fieldx" }
fieldx_aux = { path = "fieldx_aux" }
fieldx_derive = { path = "fieldx_derive" }
fieldx_derive_support = { path = "fieldx_derive_support" }