-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
94 lines (87 loc) · 1.9 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
85
86
87
88
89
90
91
92
93
94
[package]
name = "net_ensembles"
version = "0.6.0-alpha"
authors = ["Yannick Feld"]
edition = "2021"
readme = "README.md"
description = "Erdős-Rényi and small world ensembles. For simple sampling, Markov chains etc."
repository = "https://github.com/Pardoxa/net_ensembles"
keywords = [
"small-world",
"Erdos-Renyi",
"random-graph",
"ensemble",
"graph"
]
categories = ["science", "mathematics"]
documentation = "https://docs.rs/net_ensembles/"
license = "MIT OR Apache-2.0"
homepage = "https://www.yfeld.de"
exclude = [
"TestData/*",
"tests/*",
"benches/*",
"CHANGELOG.md",
"CHECKLIST*.md",
".github/*",
"*code-workspace",
".gitignore",
"index.html"
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rand = { version = "^0.8"}
serde = { version = "1.0", optional = true, features = ["derive"] }
num-traits = "^0.2"
transpose = "^0.2"
average = { version = "^0.13", optional = true }
#sampling = { path = "../sampling" }
sampling = { git = "https://github.com/Pardoxa/sampling.git", rev = "c5dc731ce2b0bb45efe2cec76553e9bdf49cb02d" }
#sampling = "^0.1.1"
permutation = "^0.2.5"
rand_distr = "0.4.3"
[dev-dependencies]
rand_pcg = { version = "0.3.1", features = ["serde1"]}
serde_json = "1.0"
criterion = "0.3"
[features]
serde_support = ["serde"]
bootstrap = ["average"]
default = ["serde_support", "bootstrap"]
#[[bench]]
#name = "sw_bench"
#harness = false
#
#[[bench]]
#name = "er_m_bench"
#harness = false
#
#[[bench]]
#name = "er_c_bench"
#harness = false
#
#[[bench]]
#name = "bench_vertex_load"
#harness = false
#
#[[bench]]
#name = "bench_q_core"
#harness = false
#
#[[bench]]
#name = "graph"
#harness = false
#
#[[bench]]
#name = "er_c_creation"
#harness = false
#[[bench]]
#name = "configuration_bench"
#harness = false
#
#[[bench]]
#name = "barabasi_albert_creation"
#harness = false
#[[bench]]
#name = "iterator_bench"
#harness = false