forked from malaire/reed-solomon-16
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
44 lines (37 loc) · 1017 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
38
39
40
41
42
43
44
[package]
name = "reed-solomon-simd"
version = "3.0.1"
license = "MIT AND BSD-3-Clause"
description = "Reed-Solomon coding with O(n log n) complexity. Leverages SIMD instructions on x86(-64) and AArch64."
repository = "https://github.com/AndersTrier/reed-solomon-simd"
keywords = [ "erasure", "reed-solomon", "Leopard-RS" ]
categories = [ "algorithms", "encoding" ]
edition = "2021"
rust-version = "1.80"
include = [
"/benches",
"/src",
"LICENSE",
"README.md",
"build.rs",
]
[dependencies]
fixedbitset = "0.4.0"
[build-dependencies]
readme-rustdocifier = "0.1.0"
[dev-dependencies]
criterion = { version = "0.5.1", features = [ "html_reports" ] }
hex = "0.4.3"
rand = "0.8.4"
rand_chacha = "0.3.1"
sha2 = "0.10.0"
# These are only for `examples/quick-comparison.rs`.
reed-solomon-16 = "0.1.0"
reed-solomon-erasure = { version = "6.0.0", features = [ "simd-accel" ] }
reed-solomon-novelpoly = "2.0.0"
leopard-codec = "0.1.0"
[lib]
bench = false
[[bench]]
name = "benchmarks"
harness = false