File: Cargo.toml.orig

package info (click to toggle)
rust-enumflags2 0.6.4-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 116 kB
  • sloc: makefile: 2
file content (32 lines) | stat: -rw-r--r-- 776 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
28
29
30
31
32
[package]
name = "enumflags2"
version = "0.6.4"
authors = ["maik klein <maikklein@googlemail.com>", "Jakub \"NieDżejkob\" Kądziołka <kuba@kadziolka.net>"]
description = "Enum-based bit flags"
license = "MIT OR Apache-2.0"
repository = "https://github.com/NieDzejkob/enumflags2"
readme = "../README.md"
keywords = ["enum", "bitflag", "flag", "bitflags"]
documentation = "https://docs.rs/enumflags2"
edition = "2018"

[dependencies.enumflags2_derive]
version = "=0.6.4"
path = "../enumflags_derive"

[dependencies.serde]
version = "^1.0.0"
default-features = false
optional = true

[features]
std = []
not_literal = ["enumflags2_derive/not_literal"]

[dev-dependencies]
criterion = "0.3"

[[bench]]
name = "from_iterator"
harness = false
path = "../benches/from_iterator.rs"