forked from 47-studio-org/generic-array
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (26 loc) · 875 Bytes
/
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
[package]
name = "generic-array"
version = "0.14.5"
authors = [ "Bartłomiej Kamiński <[email protected]>", "Aaron Trent <[email protected]>" ]
description = "Generic types implementing functionality of arrays"
readme = "README.md"
license = "MIT"
documentation = "http://fizyk20.github.io/generic-array/generic_array/"
repository = "https://github.com/fizyk20/generic-array.git"
keywords = ["generic", "array"]
categories = ["data-structures", "no-std"]
[badges]
travis-ci = { repository = "fizyk20/generic-array" }
[lib]
name = "generic_array"
[features]
more_lengths = []
[dependencies]
typenum = "1.12"
serde = { version = "1.0", optional = true, default-features = false }
[dev_dependencies]
# this can't yet be made optional, see https://github.com/rust-lang/cargo/issues/1596
serde_json = "1.0"
bincode = "1.0"
[build_dependencies]
version_check = "0.9"