File: Cargo.toml

package info (click to toggle)
rust-bit-vec 0.8.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 240 kB
  • sloc: sh: 7; makefile: 2
file content (89 lines) | stat: -rw-r--r-- 1,814 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
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
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2015"
name = "bit-vec"
version = "0.8.0"
authors = ["Alexis Beingessner <a.beingessner@gmail.com>"]
build = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A vector of bits"
homepage = "https://github.com/contain-rs/bit-vec"
documentation = "https://docs.rs/bit-vec/"
readme = "README.md"
keywords = [
    "data-structures",
    "bitvec",
    "bitmask",
    "bitmap",
    "bit",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/contain-rs/bit-vec"

[package.metadata.docs.rs]
features = [
    "borsh",
    "serde",
    "miniserde",
    "nanoserde",
]

[lib]
name = "bit_vec"
path = "src/lib.rs"

[[bench]]
name = "bench"
path = "benches/bench.rs"

[dependencies.borsh]
version = "1.5"
features = ["derive"]
optional = true
default-features = false

[disabled.dependencies.miniserde]
version = "0.1"
optional = true

[disabled.dependencies.nanoserde]
version = "0.1"
optional = true

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
default-features = false

[dev-dependencies.rand]
version = "0.8"

[dev-dependencies.rand_xorshift]
version = "0.3"

[dev-dependencies.serde_json]
version = "1.0"

[features]
borsh_std = ["borsh/std"]
default = ["std"]
serde_no_std = ["serde/alloc"]
serde_std = [
    "std",
    "serde/std",
]
std = []