-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
92 lines (73 loc) · 1.9 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[package]
name = "auto-delegate"
authors = ["notelm <elmprograminfo@gmail.com>"]
version = "0.1.3"
edition = "2021"
readme = "README.md"
repository = "https://github.com/elm-register/auto-delegate"
keywords = ["delegate", "trait", "macros"]
license = "MIT OR Apache-2.0"
categories = ["no-std"]
documentation = "https://docs.rs/auto-delegate/"
description = "Auto delegate allows you that automatic impl of traits and delegate their handling to child members."
[workspace]
members = [
"impl"
]
[[example]]
name = "multiple_traits_and_fields"
path = "./examples/structs/multiple_traits_and_fields.rs"
[[example]]
name = "new_type"
path = "./examples/structs/new_type.rs"
[[example]]
name = "super_trait"
path = "./examples/structs/super_trait.rs"
[[example]]
name = "async_trait"
path = "./examples/structs/async_trait.rs"
[[example]]
name = "enum_one_trait"
path = "./examples/enums/one_trait.rs"
[[example]]
name = "enum_super_trait"
path = "./examples/enums/super_trait.rs"
[[bench]]
name = "cmp_handwritten_struct"
path = "benches/cmp_handwritten_struct.rs"
harness = false
[[bench]]
name = "cmp_handwritten_enum"
path = "benches/cmp_handwritten_enum.rs"
harness = false
[[test]]
name = "general"
path = "tests/progress.rs"
[[test]]
name = "args"
path = "tests/args/progress.rs"
[[test]]
name = "enum"
path = "tests/enum/progress.rs"
[[test]]
name = "lifetime"
path = "tests/lifetime/progress.rs"
[[test]]
name = "struct"
path = "tests/struct/progress.rs"
[[test]]
name = "generics"
path = "tests/generics/progress.rs"
[[test]]
name = "associated_type"
path = "tests/associated_type/progress.rs"
[[test]]
name = "async_trait"
path = "tests/async_trait/progress.rs"
[dependencies]
auto-delegate-impl = { version = "0.1.1", path = "impl" }
[dev-dependencies]
trybuild = "1.0.80"
criterion = { version = "0.5.1", features = ["html_reports"] }
async-trait = "0.1.77"
tokio = { version = "1.28.0", features = ["full"] }