-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (35 loc) · 902 Bytes
/
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
[package]
name = "abcgen"
version = "0.4.0"
edition = "2021"
authors = ["Francesco Buldo <[email protected]>"]
categories = ["rust-patterns"]
description = "A procedural macro to generate boilerplate code for objects implementing the 'Actor' pattern"
license = "MIT OR Apache-2.0"
repository = "https://github.com/frabul/abcgen"
documentation = "https://docs.rs/abcgen"
readme = "README.md"
keywords = [
"actor",
"async",
"runnable",
"boilerplate",
"service",
]
exclude = ["TODO"]
[dependencies]
abcgen-attributes = { path = "attributes", version = "0.4.0" }
thiserror = "1.0.65"
[dev-dependencies]
quote = "1.0.37"
syn = { version = "2.0.82", features = ["full"] }
tokio = { version = "1.40.0", features = ["full"] }
log = "0.4.22"
env_logger = "0.11.5"
ab-code-gen = { path = "code_gen" }
[profile.release]
opt-level = 3
strip = true
debug = false
lto = true
[workspace]