forked from ferrilab/bitvec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
109 lines (96 loc) · 2.13 KB
/
Cargo.toml
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
########################################################################
# Project Manifest #
# #
# This file describes the `bitvec` project to Cargo. #
########################################################################
[package]
name = "bitvec"
version = "1.1.0"
edition = "2021"
categories = [
"data-structures",
"embedded",
"no-std",
"rust-patterns",
]
description = "Addresses memory by bits, for packed collections and bitfields"
documentation = "https://docs.rs/bitvec/latest/bitvec"
homepage = "https://ferrilab.github.io/bitvec"
include = [
"Cargo.toml",
"LICENSE.txt",
"README.md",
"doc/**/*.md",
"src/**/*.rs",
"benches/*.rs",
]
keywords = [
"bitfields",
"bitmap",
"bitstream",
"bitvec",
"bitvector",
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/ferrilab/bitvec"
rust-version = "1.56"
[features]
alloc = [
]
atomic = [
]
# Enable use of atomics and the standard library by default. no-std
# users will need to opt out with `default-features = false`.
default = [
"atomic",
"std",
]
# The standard library includes the allocator.
std = [
"alloc",
]
testing = [
]
[dependencies]
radium = "0.7"
tap = "1"
[dependencies.funty]
version = "^2.0"
default-features = false
[dependencies.serde]
default-features = false
optional = true
version = "1"
[dependencies.wyz]
version = "0.5"
default-features = false
# Crates required when running the test suite.
[dev-dependencies]
bincode = "1.3"
criterion = "0.3"
rand = "0.8"
serde = "1"
serde_json = "1"
serde_test = "1"
static_assertions = "1"
# [[bench]]
# name = "memcpy"
# harness = false
# Indicates the features that docs.rs should enable when building documentation.
[package.metadata.docs.rs]
features = [
"atomic",
"serde",
"std",
]
[badges.codecov]
repository = "ferrilab/bitvec"
branch = "main"
service = "github"
[badges.is-it-maintained-issue-resolution]
repository = "ferrilab/bitvec"
[badges.is-it-maintained-open-issues]
repository = "ferrilab/bitvec"
[badges.maintenance]
status = "passively-maintained"