File: Cargo.toml.orig

package info (click to toggle)
rust-iai-macro 0.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 160 kB
  • sloc: makefile: 4
file content (27 lines) | stat: -rw-r--r-- 622 bytes parent folder | download | duplicates (2)
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
[package]
name = "iai_macro"
version = "0.1.1"
authors = ["Brook Heisler <redattack34@gmail.com>"]
edition = "2018"

description = "Custom Test Framework macro for Iai"
repository = "https://github.com/bheisler/iai"
readme = "README.md"
keywords = ["iai", "benchmark", "macro"]
categories = ["development-tools::profiling"]
license = "Apache-2.0/MIT"

[lib]
proc-macro = true

[dependencies]
proc-macro2 = { version = "1.0", features = ["nightly"] }
quote = "1.0"

[dev-dependencies]
iai = { version = "0.1.1", path = "..", default-features = false, features = ["macro"] }

[[bench]]
name = "test_macro_bench"

[workspace]