simulation-alg 0.1.3__tar.gz → 0.1.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {simulation_alg-0.1.3 → simulation_alg-0.1.4}/Cargo.lock +3 -3
- {simulation_alg-0.1.3 → simulation_alg-0.1.4}/Cargo.toml +2 -2
- {simulation_alg-0.1.3 → simulation_alg-0.1.4}/PKG-INFO +1 -1
- {simulation_alg-0.1.3 → simulation_alg-0.1.4}/pyproject.toml +1 -1
- {simulation_alg-0.1.3 → simulation_alg-0.1.4}/.github/workflows/ci.yml +0 -0
- {simulation_alg-0.1.3 → simulation_alg-0.1.4}/.gitignore +0 -0
- {simulation_alg-0.1.3 → simulation_alg-0.1.4}/.gitmodules +0 -0
- {simulation_alg-0.1.3 → simulation_alg-0.1.4}/LICENSE +0 -0
- {simulation_alg-0.1.3 → simulation_alg-0.1.4}/README.md +0 -0
- {simulation_alg-0.1.3 → simulation_alg-0.1.4}/hyper-simulation.log +0 -0
- {simulation_alg-0.1.3 → simulation_alg-0.1.4}/python/__init__.py +0 -0
- {simulation_alg-0.1.3 → simulation_alg-0.1.4}/requirements.txt +0 -0
- {simulation_alg-0.1.3 → simulation_alg-0.1.4}/simulation.pyi +0 -0
- {simulation_alg-0.1.3 → simulation_alg-0.1.4}/src/graph/hypergraph.rs +0 -0
- {simulation_alg-0.1.3 → simulation_alg-0.1.4}/src/graph/mod.rs +0 -0
- {simulation_alg-0.1.3 → simulation_alg-0.1.4}/src/graph/networkx_graph.rs +0 -0
- {simulation_alg-0.1.3 → simulation_alg-0.1.4}/src/lib.rs +0 -0
- {simulation_alg-0.1.3 → simulation_alg-0.1.4}/src/utils.rs +0 -0
- {simulation_alg-0.1.3 → simulation_alg-0.1.4}/tests/test_hyper_simulation.py +0 -0
- {simulation_alg-0.1.3 → simulation_alg-0.1.4}/tests/test_simulation.py +0 -0
|
@@ -188,9 +188,9 @@ dependencies = [
|
|
|
188
188
|
|
|
189
189
|
[[package]]
|
|
190
190
|
name = "graph-simulation"
|
|
191
|
-
version = "0.1.
|
|
191
|
+
version = "0.1.13"
|
|
192
192
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
193
|
-
checksum = "
|
|
193
|
+
checksum = "3454fd899af251471e4ca51ba6d0d47f3383ef0cb38a74d62dde14dfe01a05c4"
|
|
194
194
|
dependencies = [
|
|
195
195
|
"bincode",
|
|
196
196
|
"env_logger",
|
|
@@ -545,7 +545,7 @@ dependencies = [
|
|
|
545
545
|
|
|
546
546
|
[[package]]
|
|
547
547
|
name = "simulation"
|
|
548
|
-
version = "0.1.
|
|
548
|
+
version = "0.1.4"
|
|
549
549
|
dependencies = [
|
|
550
550
|
"graph-base",
|
|
551
551
|
"graph-simulation",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "simulation"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.4"
|
|
4
4
|
edition = "2021"
|
|
5
5
|
license = "MIT"
|
|
6
6
|
description = "A Python package for simulation algorithms"
|
|
@@ -14,7 +14,7 @@ crate-type = ["cdylib"]
|
|
|
14
14
|
|
|
15
15
|
[dependencies]
|
|
16
16
|
pyo3 = { version = "0.23", features = ["extension-module"] }
|
|
17
|
-
graph-simulation = "0.1.
|
|
17
|
+
graph-simulation = "0.1.13"
|
|
18
18
|
graph-base = "0.1.13"
|
|
19
19
|
rayon = "1.10.0"
|
|
20
20
|
# [tool.maturin]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|