forked from ferrilab/bitvec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
84 lines (74 loc) · 1.66 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
################################################################################
# Project Manifest #
# #
# This file describes the `bitvec` Rust project to the Rust build tool, Cargo. #
################################################################################
[package]
name = "bitvec"
version = "0.18.0"
authors = [
"myrrlyn <[email protected]>",
]
categories = [
"data-structures",
"embedded",
"no-std",
"rust-patterns",
]
description = "A crate for manipulating memory, bit by bit"
documentation = "https://docs.rs/bitvec"
edition = "2018"
homepage = "https://myrrlyn.net/crates/bitvec"
include = [
"Cargo.toml",
"src/**/*.rs",
]
keywords = [
"bitfields",
"bits",
"bitstream",
"bitvec",
"bitvector",
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/myrrlyn/bitvec"
[features]
alloc = []
atomic = []
default = [
"atomic",
"std",
]
std = [
"alloc",
]
[dependencies]
funty = "1"
radium = "0.3"
[dependencies.serde]
default-features = false
optional = true
version = "1"
# Crates required when running the test suite.
[dev-dependencies]
serde = "1"
serde_json = "1"
serde_test = "1"
# Indicates the features that docs.rs should enable when building documentation.
[package.metadata.docs.rs]
features = [
"atomic",
"serde",
"std",
]
[badges.codecov]
repository = "myrrlyn/bitvec"
branch = "master"
service = "github"
[badges.is-it-maintained-issue-resolution]
repository = "myrrlyn/bitvec"
[badges.is-it-maintained-open-issues]
repository = "myrrlyn/bitvec"
[badges.maintenance]
status = "actively-developed"