-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
46 lines (42 loc) · 1.2 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
[package]
name = "ldpc-toolbox"
description = "Utilities to aid in LDPC code design"
version = "0.7.0"
readme = "README.md"
homepage = "https://github.com/daniestevez/ldpc-toolbox"
repository = "https://github.com/daniestevez/ldpc-toolbox"
documentation = "https://docs.rs/ldpc-toolbox"
edition = "2021"
authors = ["Daniel Estevez <[email protected]>"]
license = "MIT OR Apache-2.0"
keywords = ["ldpc", "fec", "graph"]
categories = ["mathematics", "science", "simulation"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "ldpc_toolbox"
crate-type = ["lib", "cdylib", "staticlib"]
# This needs to be present to avoid 'cargo doc' from generating documentation
# for a binary crate named ldpc_toolbox, which clashes with the documentation
# for the library crate.
[[bin]]
name = "ldpc-toolbox"
doc = false
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
console = "0.15"
ctrlc = "3"
enum-iterator = "2"
humantime = "2"
libc = "0.2"
ndarray = "0.16"
num-complex = "0.4"
num_cpus = "1"
num-traits = "0.2"
rand_chacha = "0.3"
rand = "0.8"
rand_core = "0.6"
rand_distr = "0.4"
rayon = "1.5"
termination = "0.1"
thiserror = "1"