File: Cargo.toml.orig

package info (click to toggle)
rust-multiversion 0.8.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 168 kB
  • sloc: makefile: 2
file content (35 lines) | stat: -rw-r--r-- 779 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
30
31
32
33
34
35
[package]
name = "multiversion"
version = "0.8.0"
authors = ["Caleb Zulawski <caleb.zulawski@gmail.com>"]
license = "MIT OR Apache-2.0"
description = "Easy function multiversioning"
repository = "https://github.com/calebzulawski/multiversion"
categories = ["hardware-support", "no-std"]
readme = "README.md"
include = [
    "/Cargo.toml",
    "/LICENSE-APACHE",
    "/LICENSE-MIT",
    "/README.md",
    "/src/**",
    "/tests/**",
    "/benches/**",
]
edition = "2021"

[features]
default = ["std"]
std = ["multiversion-macros/std"]

[dependencies]
multiversion-macros = { version = "0.8.0", path = "../multiversion-macros", default-features = false }
target-features = "0.1"

[dev-dependencies]
rustversion = "1"
criterion = "0.4"

[[bench]]
name = "benchmark"
harness = false