File: Cargo.toml.orig

package info (click to toggle)
rust-enum-dispatch 0.3.13-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 320 kB
  • sloc: sh: 4; makefile: 2
file content (29 lines) | stat: -rw-r--r-- 841 bytes parent folder | download
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
[package]
name = "enum_dispatch"
version = "0.3.13"
authors = ["Anton Lazarev <https://antonok.com>"]
edition = "2018"
description = "Near drop-in replacement for dynamic-dispatched method calls with up to 10x the speed"
repository = "https://gitlab.com/antonok/enum_dispatch"
readme = "README.md"
keywords = ["speed", "performance", "traits", "dynamic", "optimization"]
categories = ["rust-patterns", "development-tools::procedural-macro-helpers"]
license = "MIT OR Apache-2.0"
exclude = ["benches"]

[lib]
proc-macro = true

[dependencies]
once_cell = "^1.0.1"
quote = "^1.0"
proc-macro2 = "^1.0"
syn = { version = "^2.0", features = ["full"] }

[dev-dependencies]
rand = ">= 0.5.5, <= 0.6.1"
enum_derive = "= 0.1.7"
custom_derive = "= 0.1.7"
serde = { version = "= 1.0.136", features = ["derive"] }
serde_json = "= 1.0.78"
smol = "1.3.0"