-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (30 loc) · 1.06 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
[package]
name = "delegation"
version = "0.4.0"
edition = "2024"
rust-version = "1.85"
description = "Macro-based delegation for enums and structs."
license = "MIT OR Apache-2.0"
authors = [
"Mikhail Bashilov <[email protected]>",
"Kai Ren <[email protected]>",
]
documentation = "https://docs.rs/delegation"
homepage = "https://github.com/arcane-rs/delegation"
repository = "https://github.com/arcane-rs/delegation"
readme = "README.md"
categories = ["rust-patterns"]
keywords = ["delegate", "delegation", "dispatch", "enum", "optimization"]
include = ["/benches/", "/src/", "CHANGELOG.md", "/LICENSE-APACHE", "/LICENSE-MIT", "/README.md"]
[dependencies]
codegen = { version = "=0.4.0", package = "delegation-codegen", path = "codegen" }
[dev-dependencies]
criterion = { version = "0.5", default-features = false }
# TODO: Remove once `criterion` is upgraded.
# Not really used, for surviving `minimal-versions` check only.
regex = { version = "1.6", default-features = false }
[[bench]]
name = "delegate"
harness = false
[workspace]
members = [".", "codegen"]