File: Cargo.toml.orig

package info (click to toggle)
rust-enumflags2 0.7.10-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 160 kB
  • sloc: makefile: 4
file content (31 lines) | stat: -rw-r--r-- 694 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
[package]
name = "enumflags2"
version = "0.7.10"
authors = ["maik klein <maikklein@googlemail.com>", "Maja Kądziołka <maya@compilercrim.es>"]
description = "Enum-based bit flags"
license = "MIT OR Apache-2.0"
repository = "https://github.com/meithecatte/enumflags2"
readme = "README.md"
keywords = ["enum", "bitflag", "flag", "bitflags"]
documentation = "https://docs.rs/enumflags2"
edition = "2018"
rust-version = "1.56"

[dependencies.enumflags2_derive]
version = "=0.7.10"
path = "enumflags_derive"

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

[features]
std = []

[workspace]
members = [
    "enumflags_derive",
    "test_suite",
    "benchmarks",
]