dependency_cache 0.2.3__cp38-abi3-win_amd64.whl
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.
- dependency_cache/__init__.py +13 -0
- dependency_cache/dependency_cache.pyd +0 -0
- dependency_cache/dependency_cache.pyi +39 -0
- dependency_cache/plot_dependency_graph.py +43 -0
- dependency_cache-0.2.3.dist-info/METADATA +126 -0
- dependency_cache-0.2.3.dist-info/RECORD +9 -0
- dependency_cache-0.2.3.dist-info/WHEEL +4 -0
- dependency_cache-0.2.3.dist-info/licenses/LICENSE +21 -0
- dependency_cache-0.2.3.dist-info/sboms/dependency_cache.cyclonedx.json +753 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
from .dependency_cache import (
|
|
2
|
+
DependencyCacheBase,
|
|
3
|
+
automagically_dependency_cached,
|
|
4
|
+
dependency_cached,
|
|
5
|
+
)
|
|
6
|
+
from .plot_dependency_graph import plot_dependency_graph
|
|
7
|
+
|
|
8
|
+
__all__ = [
|
|
9
|
+
"dependency_cached",
|
|
10
|
+
"DependencyCacheBase",
|
|
11
|
+
"automagically_dependency_cached",
|
|
12
|
+
"plot_dependency_graph",
|
|
13
|
+
]
|
|
Binary file
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
from collections.abc import Sequence
|
|
2
|
+
from typing import Any, final
|
|
3
|
+
|
|
4
|
+
class DependencyCacheBase:
|
|
5
|
+
def __new__(cls, /, *_args, **_kwargs) -> DependencyCacheBase: ...
|
|
6
|
+
def clear_cache(self, /) -> None: ...
|
|
7
|
+
def dump_cache(self, /, order: Sequence[str] | None = None) -> dict: ...
|
|
8
|
+
def get_cached_value(self, /, method_name: str, **kwargs) -> Any | None: ...
|
|
9
|
+
def get_cached_values(self, /) -> dict: ...
|
|
10
|
+
def get_dependency_graph(self, /) -> dict: ...
|
|
11
|
+
def get_validation_state(self, /) -> dict: ...
|
|
12
|
+
def load_cache(self, /, data: dict, order: Sequence[str] | None = None) -> None: ...
|
|
13
|
+
def update_cached_value(
|
|
14
|
+
self, /, method_name: str, value: Any, **kwargs
|
|
15
|
+
) -> None: ...
|
|
16
|
+
|
|
17
|
+
@final
|
|
18
|
+
class automagically_dependency_cached:
|
|
19
|
+
def __call__(self, /, func: Any) -> Any: ...
|
|
20
|
+
def __new__(
|
|
21
|
+
cls,
|
|
22
|
+
/,
|
|
23
|
+
use_cache: bool = True,
|
|
24
|
+
dependencies: Any | None = None,
|
|
25
|
+
track_runtime_dependencies: bool = True,
|
|
26
|
+
serialisable: bool = False,
|
|
27
|
+
) -> automagically_dependency_cached: ...
|
|
28
|
+
|
|
29
|
+
@final
|
|
30
|
+
class dependency_cached:
|
|
31
|
+
def __call__(self, /, func: Any) -> Any: ...
|
|
32
|
+
def __new__(
|
|
33
|
+
cls,
|
|
34
|
+
/,
|
|
35
|
+
use_cache: bool = True,
|
|
36
|
+
dependencies: Any | None = None,
|
|
37
|
+
track_runtime_dependencies: bool = False,
|
|
38
|
+
serialisable: bool = False,
|
|
39
|
+
) -> dependency_cached: ...
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import matplotlib.pyplot as plt
|
|
2
|
+
import networkx as nx
|
|
3
|
+
|
|
4
|
+
from .dependency_cache import DependencyCacheBase
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
def plot_dependency_graph(obj, **kwargs) -> None:
|
|
8
|
+
if not isinstance(obj, DependencyCacheBase):
|
|
9
|
+
raise TypeError("provided object must inherit from DependencyCacheBase")
|
|
10
|
+
graph_data = obj.get_dependency_graph()
|
|
11
|
+
g = nx.DiGraph()
|
|
12
|
+
for child_node, parents in graph_data.items():
|
|
13
|
+
if isinstance(child_node, tuple):
|
|
14
|
+
func_name, args = child_node
|
|
15
|
+
child_node = f"{func_name}({''.join([f'{var}={val}' for (var, val) in args])})"
|
|
16
|
+
for parent_node in parents:
|
|
17
|
+
if isinstance(parent_node, tuple):
|
|
18
|
+
func_name, args = parent_node
|
|
19
|
+
parent_node = f"{func_name}({''.join([f'{var}={val}' for (var, val) in args])})"
|
|
20
|
+
g.add_edge(parent_node, child_node)
|
|
21
|
+
|
|
22
|
+
for layer_idx, nodes in enumerate(nx.topological_generations(g)):
|
|
23
|
+
for node in nodes:
|
|
24
|
+
g.nodes[node]["layer"] = layer_idx
|
|
25
|
+
|
|
26
|
+
pos = nx.multipartite_layout(g, subset_key="layer", align="horizontal")
|
|
27
|
+
pos = {node: (coords[0], -coords[1]) for node, coords in pos.items()}
|
|
28
|
+
|
|
29
|
+
defaults = {
|
|
30
|
+
"with_labels": True,
|
|
31
|
+
"node_size": 3600,
|
|
32
|
+
"node_color": "#4361ee",
|
|
33
|
+
"font_color": "white",
|
|
34
|
+
"font_weight": "bold",
|
|
35
|
+
"edge_color": "gray",
|
|
36
|
+
"width": 1,
|
|
37
|
+
"arrows": True,
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
draw_options = defaults | kwargs
|
|
41
|
+
|
|
42
|
+
nx.draw(g, pos=pos, **draw_options)
|
|
43
|
+
plt.show()
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: dependency_cache
|
|
3
|
+
Version: 0.2.3
|
|
4
|
+
Classifier: Programming Language :: Rust
|
|
5
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
6
|
+
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
7
|
+
Requires-Dist: matplotlib>=3.7.5
|
|
8
|
+
Requires-Dist: networkx>=3.1
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Summary: A caching library for Python object methods that utilises a dependency graph to track relationships and control invalidation, enabling efficient recomputation
|
|
11
|
+
Keywords: caching,dependency-graph,invalidation
|
|
12
|
+
License: MIT
|
|
13
|
+
Requires-Python: >=3.8
|
|
14
|
+
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
15
|
+
Project-URL: Homepage, https://github.com/XtdWt/dependency_cache
|
|
16
|
+
Project-URL: Issues, https://github.com/XtdWt/dependency_cache/issues
|
|
17
|
+
Project-URL: Repository, https://github.com/XtdWt/dependency_cache
|
|
18
|
+
|
|
19
|
+
# Dependency Cache
|
|
20
|
+
## 🚧 Work In Progress 🚧
|
|
21
|
+
|
|
22
|
+
### Description
|
|
23
|
+
Dependency Cache is a caching layer for object methods, with invalidation driven by a dependency graph.
|
|
24
|
+
Rather than re-running expensive, deeply nested calculations on every call, it stores each method's result and only recomputes (and marks downstream methods for recalculation) when one of its declared dependencies actually changes.
|
|
25
|
+
Under the hood, this project is written in Rust using [pyo3](https://github.com/PyO3/pyo3) and built with [maturin](https://github.com/PyO3/maturin).
|
|
26
|
+
### Installation
|
|
27
|
+
|
|
28
|
+
Install the latest stable version from [PyPI](https://pypi.org/project/dependency-cache/):
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
pip install dependency-cache
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
### API Overview
|
|
35
|
+
|
|
36
|
+
| Export | What it's for |
|
|
37
|
+
|---|---|
|
|
38
|
+
| `DependencyCacheBase` | Base class to inherit from. Gives your instance a cache and a dependency graph. |
|
|
39
|
+
| `dependency_cached(use_cache=True, dependencies=[...], track_runtime_dependencies=False, serialisable=False)` | A footgun-enabled decorator for a method where you **explicitly declare** all direct dependencies. |
|
|
40
|
+
| `automagically_dependency_cached(use_cache=True, dependencies=[...], track_runtime_dependencies=True, serialisable=False)` | A decorator which **automagically infers** the direct dependencies. Optionally override the defaults and inference using the `dependencies` parameter. |
|
|
41
|
+
| `plot_dependency_graph(obj, **kwargs)` | Visualizes an instance's dependency graph, for inspection/debugging. |
|
|
42
|
+
|
|
43
|
+
### Setup
|
|
44
|
+
This project uses (and requires) [uv](https://github.com/astral-sh/uv) as a package manager and maturin to compile.
|
|
45
|
+
|
|
46
|
+
To set up a local dev environment:
|
|
47
|
+
|
|
48
|
+
- install python dependencies
|
|
49
|
+
```bash
|
|
50
|
+
uv sync
|
|
51
|
+
```
|
|
52
|
+
- generate local development file for testing (and update pyi file for accurate typechecking)
|
|
53
|
+
```bash
|
|
54
|
+
maturin develop --generate-stubs
|
|
55
|
+
maturin develop -r --generate-stubs
|
|
56
|
+
```
|
|
57
|
+
- run python tests
|
|
58
|
+
```bash
|
|
59
|
+
uv run pytest
|
|
60
|
+
uv run pytest -vv
|
|
61
|
+
```
|
|
62
|
+
- run rust tests
|
|
63
|
+
```bash
|
|
64
|
+
cargo test
|
|
65
|
+
```
|
|
66
|
+
- temporary fix: generate stubs currently produces a file that is incorrectly formatted, use ruff to format the pyi file immediately
|
|
67
|
+
```bash
|
|
68
|
+
maturin develop --generate-stubs | uv run ruff format ./python/dependency_cache/dependency_cache.pyi
|
|
69
|
+
```
|
|
70
|
+
### Quick Example
|
|
71
|
+
|
|
72
|
+
```python
|
|
73
|
+
from dependency_cache import DependencyCacheBase, automagically_dependency_cached
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
class ExampleCalculation(DependencyCacheBase):
|
|
77
|
+
""" C
|
|
78
|
+
// \\
|
|
79
|
+
A B
|
|
80
|
+
"""
|
|
81
|
+
|
|
82
|
+
def __init__(self, x, y):
|
|
83
|
+
super().__init__()
|
|
84
|
+
self.x = x
|
|
85
|
+
self.y = y
|
|
86
|
+
|
|
87
|
+
@automagically_dependency_cached()
|
|
88
|
+
def A(self):
|
|
89
|
+
print("calculating A")
|
|
90
|
+
return self.x
|
|
91
|
+
|
|
92
|
+
@automagically_dependency_cached()
|
|
93
|
+
def B(self):
|
|
94
|
+
print("calculating B")
|
|
95
|
+
return self.y
|
|
96
|
+
|
|
97
|
+
@automagically_dependency_cached()
|
|
98
|
+
def C(self):
|
|
99
|
+
print("calculating C")
|
|
100
|
+
return self.B() + self.A()
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
c = ExampleCalculation(3, 5)
|
|
104
|
+
print(c.C()) # calculates A, B, C -> 8
|
|
105
|
+
print(c.C()) # hits cache -> 8
|
|
106
|
+
|
|
107
|
+
c.update_cached_value("A", 0) # invalidates C (but not B)
|
|
108
|
+
print(c.C()) # recalculates C -> 5
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
This example can be found [here](https://github.com/XtdWt/dependency_cache/blob/master/python/examples/example.py) with more runnable examples and use cases provided in the [python/examples](https://github.com/XtdWt/dependency_cache/tree/master/python/examples) folder.
|
|
112
|
+
|
|
113
|
+
```bash
|
|
114
|
+
uv run ./python/examples/example.py
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
### TODOs
|
|
118
|
+
This project is still a work in progress, with everything from API to underlying design subject to change on my whim.
|
|
119
|
+
|
|
120
|
+
Current TODO list (in no particular order):
|
|
121
|
+
- scenario analysis capability (add temporary cache to base)
|
|
122
|
+
- add validation to static dependencies, ensure methods are of decorator class
|
|
123
|
+
- improve plot_dependency_graph (maybe to GUI?) with moveable nodes
|
|
124
|
+
- add object thread safety for python 3.14+
|
|
125
|
+
- work out how best to handle nested objects
|
|
126
|
+
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
dependency_cache/__init__.py,sha256=vzXxWibTEiA82oDRiUpZIo-oL8kqhixz7hy1q2j4b_4,324
|
|
2
|
+
dependency_cache/dependency_cache.pyd,sha256=RVn4Su6aDHg2BSENUQYSeo0qB4_jRYiSg5phdT58r3Q,434688
|
|
3
|
+
dependency_cache/dependency_cache.pyi,sha256=uZfcQoS5S_Wy4wCP4GD6uUN2DTM-FqdEgV40UlCK99U,1403
|
|
4
|
+
dependency_cache/plot_dependency_graph.py,sha256=4QOMDFEQeaM9u-e56CznKYOpGLYIY5r-lAB_raU_4Pk,1534
|
|
5
|
+
dependency_cache-0.2.3.dist-info/METADATA,sha256=VTLb4I2T9bsY6w3qpzBs0DYz9bZ4dBZv96hmi-_fmGc,4815
|
|
6
|
+
dependency_cache-0.2.3.dist-info/WHEEL,sha256=mHg63_IuwLSNkYG18nNOcA-LX3sex5fkDDLT827pcck,95
|
|
7
|
+
dependency_cache-0.2.3.dist-info/licenses/LICENSE,sha256=a114MQxnYxNj0DuSwzqHFwXbcl76zlL4f1xS1xpnNGQ,1083
|
|
8
|
+
dependency_cache-0.2.3.dist-info/sboms/dependency_cache.cyclonedx.json,sha256=IEw9pG985NosxWnttoOkB9xqkds1H_ANXtqoVErHOzo,23413
|
|
9
|
+
dependency_cache-0.2.3.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 XtdWt
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,753 @@
|
|
|
1
|
+
{
|
|
2
|
+
"bomFormat": "CycloneDX",
|
|
3
|
+
"specVersion": "1.5",
|
|
4
|
+
"version": 1,
|
|
5
|
+
"serialNumber": "urn:uuid:61b4ed50-442a-4c20-b6db-e58d5cc44b91",
|
|
6
|
+
"metadata": {
|
|
7
|
+
"timestamp": "2026-09-10T10:53:58.557828400Z",
|
|
8
|
+
"tools": [
|
|
9
|
+
{
|
|
10
|
+
"vendor": "CycloneDX",
|
|
11
|
+
"name": "cargo-cyclonedx",
|
|
12
|
+
"version": "0.5.9"
|
|
13
|
+
}
|
|
14
|
+
],
|
|
15
|
+
"component": {
|
|
16
|
+
"type": "library",
|
|
17
|
+
"bom-ref": "path+file:///D:/a/dependency_cache/dependency_cache#0.1.0",
|
|
18
|
+
"name": "dependency_cache",
|
|
19
|
+
"version": "0.1.0",
|
|
20
|
+
"scope": "required",
|
|
21
|
+
"purl": "pkg:cargo/dependency_cache@0.1.0?download_url=file://.",
|
|
22
|
+
"components": [
|
|
23
|
+
{
|
|
24
|
+
"type": "library",
|
|
25
|
+
"bom-ref": "path+file:///D:/a/dependency_cache/dependency_cache#0.1.0 bin-target-0",
|
|
26
|
+
"name": "dependency_cache",
|
|
27
|
+
"version": "0.1.0",
|
|
28
|
+
"purl": "pkg:cargo/dependency_cache@0.1.0?download_url=file://.#src/lib.rs"
|
|
29
|
+
}
|
|
30
|
+
]
|
|
31
|
+
},
|
|
32
|
+
"properties": [
|
|
33
|
+
{
|
|
34
|
+
"name": "cdx:rustc:sbom:target:all_targets",
|
|
35
|
+
"value": "true"
|
|
36
|
+
}
|
|
37
|
+
]
|
|
38
|
+
},
|
|
39
|
+
"components": [
|
|
40
|
+
{
|
|
41
|
+
"type": "library",
|
|
42
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4",
|
|
43
|
+
"author": "Alex Crichton <alex@alexcrichton.com>",
|
|
44
|
+
"name": "cfg-if",
|
|
45
|
+
"version": "1.0.4",
|
|
46
|
+
"description": "A macro to ergonomically define an item depending on a large number of #[cfg] parameters. Structured like an if-else chain, the first matching branch is the item that gets emitted. ",
|
|
47
|
+
"scope": "required",
|
|
48
|
+
"hashes": [
|
|
49
|
+
{
|
|
50
|
+
"alg": "SHA-256",
|
|
51
|
+
"content": "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
52
|
+
}
|
|
53
|
+
],
|
|
54
|
+
"licenses": [
|
|
55
|
+
{
|
|
56
|
+
"expression": "MIT OR Apache-2.0"
|
|
57
|
+
}
|
|
58
|
+
],
|
|
59
|
+
"purl": "pkg:cargo/cfg-if@1.0.4",
|
|
60
|
+
"externalReferences": [
|
|
61
|
+
{
|
|
62
|
+
"type": "vcs",
|
|
63
|
+
"url": "https://github.com/rust-lang/cfg-if"
|
|
64
|
+
}
|
|
65
|
+
]
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"type": "library",
|
|
69
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#chacha20@0.10.2",
|
|
70
|
+
"author": "RustCrypto Developers",
|
|
71
|
+
"name": "chacha20",
|
|
72
|
+
"version": "0.10.2",
|
|
73
|
+
"description": "The ChaCha20 stream cipher (RFC 8439) implemented in pure Rust using traits from the RustCrypto `cipher` crate, with optional architecture-specific hardware acceleration (AVX2, SSE2). Additionally provides the ChaCha8, ChaCha12, XChaCha20, XChaCha12 and XChaCha8 stream ciphers, and also optional rand_core-compatible RNGs based on those ciphers. ",
|
|
74
|
+
"scope": "required",
|
|
75
|
+
"hashes": [
|
|
76
|
+
{
|
|
77
|
+
"alg": "SHA-256",
|
|
78
|
+
"content": "65c35e4b699c7e15ccbe7ee35c005e4fc0a278d22238a2857e6ce2dadeda1b06"
|
|
79
|
+
}
|
|
80
|
+
],
|
|
81
|
+
"licenses": [
|
|
82
|
+
{
|
|
83
|
+
"expression": "MIT OR Apache-2.0"
|
|
84
|
+
}
|
|
85
|
+
],
|
|
86
|
+
"purl": "pkg:cargo/chacha20@0.10.2",
|
|
87
|
+
"externalReferences": [
|
|
88
|
+
{
|
|
89
|
+
"type": "documentation",
|
|
90
|
+
"url": "https://docs.rs/chacha20"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"type": "vcs",
|
|
94
|
+
"url": "https://github.com/RustCrypto/stream-ciphers"
|
|
95
|
+
}
|
|
96
|
+
]
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"type": "library",
|
|
100
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.3.1",
|
|
101
|
+
"author": "RustCrypto Developers",
|
|
102
|
+
"name": "cpufeatures",
|
|
103
|
+
"version": "0.3.1",
|
|
104
|
+
"description": "Lightweight runtime CPU feature detection for aarch64, loongarch64, and x86/x86_64 targets, with no_std support and support for mobile targets including Android and iOS ",
|
|
105
|
+
"scope": "required",
|
|
106
|
+
"hashes": [
|
|
107
|
+
{
|
|
108
|
+
"alg": "SHA-256",
|
|
109
|
+
"content": "5ca28b0ae3115b884660db4118d803791fd6756b6e88f39c0f3f7859060d7566"
|
|
110
|
+
}
|
|
111
|
+
],
|
|
112
|
+
"licenses": [
|
|
113
|
+
{
|
|
114
|
+
"expression": "MIT OR Apache-2.0"
|
|
115
|
+
}
|
|
116
|
+
],
|
|
117
|
+
"purl": "pkg:cargo/cpufeatures@0.3.1",
|
|
118
|
+
"externalReferences": [
|
|
119
|
+
{
|
|
120
|
+
"type": "documentation",
|
|
121
|
+
"url": "https://docs.rs/cpufeatures"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"type": "vcs",
|
|
125
|
+
"url": "https://github.com/RustCrypto/utils"
|
|
126
|
+
}
|
|
127
|
+
]
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"type": "library",
|
|
131
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.4.3",
|
|
132
|
+
"author": "The Rand Project Developers",
|
|
133
|
+
"name": "getrandom",
|
|
134
|
+
"version": "0.4.3",
|
|
135
|
+
"description": "A small cross-platform library for retrieving random data from system source",
|
|
136
|
+
"scope": "required",
|
|
137
|
+
"hashes": [
|
|
138
|
+
{
|
|
139
|
+
"alg": "SHA-256",
|
|
140
|
+
"content": "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
141
|
+
}
|
|
142
|
+
],
|
|
143
|
+
"licenses": [
|
|
144
|
+
{
|
|
145
|
+
"expression": "MIT OR Apache-2.0"
|
|
146
|
+
}
|
|
147
|
+
],
|
|
148
|
+
"purl": "pkg:cargo/getrandom@0.4.3",
|
|
149
|
+
"externalReferences": [
|
|
150
|
+
{
|
|
151
|
+
"type": "documentation",
|
|
152
|
+
"url": "https://docs.rs/getrandom"
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"type": "vcs",
|
|
156
|
+
"url": "https://github.com/rust-random/getrandom"
|
|
157
|
+
}
|
|
158
|
+
]
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"type": "library",
|
|
162
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0",
|
|
163
|
+
"name": "heck",
|
|
164
|
+
"version": "0.5.0",
|
|
165
|
+
"description": "heck is a case conversion library.",
|
|
166
|
+
"scope": "required",
|
|
167
|
+
"hashes": [
|
|
168
|
+
{
|
|
169
|
+
"alg": "SHA-256",
|
|
170
|
+
"content": "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
171
|
+
}
|
|
172
|
+
],
|
|
173
|
+
"licenses": [
|
|
174
|
+
{
|
|
175
|
+
"expression": "MIT OR Apache-2.0"
|
|
176
|
+
}
|
|
177
|
+
],
|
|
178
|
+
"purl": "pkg:cargo/heck@0.5.0",
|
|
179
|
+
"externalReferences": [
|
|
180
|
+
{
|
|
181
|
+
"type": "vcs",
|
|
182
|
+
"url": "https://github.com/withoutboats/heck"
|
|
183
|
+
}
|
|
184
|
+
]
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"type": "library",
|
|
188
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.187",
|
|
189
|
+
"name": "libc",
|
|
190
|
+
"version": "0.2.187",
|
|
191
|
+
"description": "Raw FFI bindings to platform libraries like libc.",
|
|
192
|
+
"scope": "required",
|
|
193
|
+
"hashes": [
|
|
194
|
+
{
|
|
195
|
+
"alg": "SHA-256",
|
|
196
|
+
"content": "a7743783ea728ef5c31194c6590797eed286449b4a4e87d626d8a51f0a94e732"
|
|
197
|
+
}
|
|
198
|
+
],
|
|
199
|
+
"licenses": [
|
|
200
|
+
{
|
|
201
|
+
"expression": "MIT OR Apache-2.0"
|
|
202
|
+
}
|
|
203
|
+
],
|
|
204
|
+
"purl": "pkg:cargo/libc@0.2.187",
|
|
205
|
+
"externalReferences": [
|
|
206
|
+
{
|
|
207
|
+
"type": "vcs",
|
|
208
|
+
"url": "https://github.com/rust-lang/libc"
|
|
209
|
+
}
|
|
210
|
+
]
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"type": "library",
|
|
214
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4",
|
|
215
|
+
"author": "Aleksey Kladov <aleksey.kladov@gmail.com>",
|
|
216
|
+
"name": "once_cell",
|
|
217
|
+
"version": "1.21.4",
|
|
218
|
+
"description": "Single assignment cells and lazy values.",
|
|
219
|
+
"scope": "required",
|
|
220
|
+
"hashes": [
|
|
221
|
+
{
|
|
222
|
+
"alg": "SHA-256",
|
|
223
|
+
"content": "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
224
|
+
}
|
|
225
|
+
],
|
|
226
|
+
"licenses": [
|
|
227
|
+
{
|
|
228
|
+
"expression": "MIT OR Apache-2.0"
|
|
229
|
+
}
|
|
230
|
+
],
|
|
231
|
+
"purl": "pkg:cargo/once_cell@1.21.4",
|
|
232
|
+
"externalReferences": [
|
|
233
|
+
{
|
|
234
|
+
"type": "documentation",
|
|
235
|
+
"url": "https://docs.rs/once_cell"
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"type": "vcs",
|
|
239
|
+
"url": "https://github.com/matklad/once_cell"
|
|
240
|
+
}
|
|
241
|
+
]
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"type": "library",
|
|
245
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.107",
|
|
246
|
+
"author": "David Tolnay <dtolnay@gmail.com>, Alex Crichton <alex@alexcrichton.com>",
|
|
247
|
+
"name": "proc-macro2",
|
|
248
|
+
"version": "1.0.107",
|
|
249
|
+
"description": "A substitute implementation of the compiler's `proc_macro` API to decouple token-based libraries from the procedural macro use case.",
|
|
250
|
+
"scope": "required",
|
|
251
|
+
"hashes": [
|
|
252
|
+
{
|
|
253
|
+
"alg": "SHA-256",
|
|
254
|
+
"content": "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
255
|
+
}
|
|
256
|
+
],
|
|
257
|
+
"licenses": [
|
|
258
|
+
{
|
|
259
|
+
"expression": "MIT OR Apache-2.0"
|
|
260
|
+
}
|
|
261
|
+
],
|
|
262
|
+
"purl": "pkg:cargo/proc-macro2@1.0.107",
|
|
263
|
+
"externalReferences": [
|
|
264
|
+
{
|
|
265
|
+
"type": "documentation",
|
|
266
|
+
"url": "https://docs.rs/proc-macro2"
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"type": "vcs",
|
|
270
|
+
"url": "https://github.com/dtolnay/proc-macro2"
|
|
271
|
+
}
|
|
272
|
+
]
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"type": "library",
|
|
276
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.29.2",
|
|
277
|
+
"author": "PyO3 Project and Contributors <https://github.com/PyO3>",
|
|
278
|
+
"name": "pyo3-build-config",
|
|
279
|
+
"version": "0.29.2",
|
|
280
|
+
"description": "Build configuration for the PyO3 ecosystem",
|
|
281
|
+
"scope": "excluded",
|
|
282
|
+
"hashes": [
|
|
283
|
+
{
|
|
284
|
+
"alg": "SHA-256",
|
|
285
|
+
"content": "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
|
|
286
|
+
}
|
|
287
|
+
],
|
|
288
|
+
"licenses": [
|
|
289
|
+
{
|
|
290
|
+
"expression": "MIT OR Apache-2.0"
|
|
291
|
+
}
|
|
292
|
+
],
|
|
293
|
+
"purl": "pkg:cargo/pyo3-build-config@0.29.2",
|
|
294
|
+
"externalReferences": [
|
|
295
|
+
{
|
|
296
|
+
"type": "website",
|
|
297
|
+
"url": "https://github.com/pyo3/pyo3"
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"type": "vcs",
|
|
301
|
+
"url": "https://github.com/pyo3/pyo3"
|
|
302
|
+
}
|
|
303
|
+
]
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
"type": "library",
|
|
307
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-ffi@0.29.2",
|
|
308
|
+
"author": "PyO3 Project and Contributors <https://github.com/PyO3>",
|
|
309
|
+
"name": "pyo3-ffi",
|
|
310
|
+
"version": "0.29.2",
|
|
311
|
+
"description": "Python-API bindings for the PyO3 ecosystem",
|
|
312
|
+
"scope": "required",
|
|
313
|
+
"hashes": [
|
|
314
|
+
{
|
|
315
|
+
"alg": "SHA-256",
|
|
316
|
+
"content": "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
|
|
317
|
+
}
|
|
318
|
+
],
|
|
319
|
+
"licenses": [
|
|
320
|
+
{
|
|
321
|
+
"expression": "MIT OR Apache-2.0"
|
|
322
|
+
}
|
|
323
|
+
],
|
|
324
|
+
"purl": "pkg:cargo/pyo3-ffi@0.29.2",
|
|
325
|
+
"externalReferences": [
|
|
326
|
+
{
|
|
327
|
+
"type": "website",
|
|
328
|
+
"url": "https://github.com/pyo3/pyo3"
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
"type": "other",
|
|
332
|
+
"url": "python"
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
"type": "vcs",
|
|
336
|
+
"url": "https://github.com/pyo3/pyo3"
|
|
337
|
+
}
|
|
338
|
+
]
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"type": "library",
|
|
342
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros-backend@0.29.2",
|
|
343
|
+
"author": "PyO3 Project and Contributors <https://github.com/PyO3>",
|
|
344
|
+
"name": "pyo3-macros-backend",
|
|
345
|
+
"version": "0.29.2",
|
|
346
|
+
"description": "Code generation for PyO3 package",
|
|
347
|
+
"scope": "required",
|
|
348
|
+
"hashes": [
|
|
349
|
+
{
|
|
350
|
+
"alg": "SHA-256",
|
|
351
|
+
"content": "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
|
|
352
|
+
}
|
|
353
|
+
],
|
|
354
|
+
"licenses": [
|
|
355
|
+
{
|
|
356
|
+
"expression": "MIT OR Apache-2.0"
|
|
357
|
+
}
|
|
358
|
+
],
|
|
359
|
+
"purl": "pkg:cargo/pyo3-macros-backend@0.29.2",
|
|
360
|
+
"externalReferences": [
|
|
361
|
+
{
|
|
362
|
+
"type": "website",
|
|
363
|
+
"url": "https://github.com/pyo3/pyo3"
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"type": "vcs",
|
|
367
|
+
"url": "https://github.com/pyo3/pyo3"
|
|
368
|
+
}
|
|
369
|
+
]
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"type": "library",
|
|
373
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros@0.29.2",
|
|
374
|
+
"author": "PyO3 Project and Contributors <https://github.com/PyO3>",
|
|
375
|
+
"name": "pyo3-macros",
|
|
376
|
+
"version": "0.29.2",
|
|
377
|
+
"description": "Proc macros for PyO3 package",
|
|
378
|
+
"scope": "required",
|
|
379
|
+
"hashes": [
|
|
380
|
+
{
|
|
381
|
+
"alg": "SHA-256",
|
|
382
|
+
"content": "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
|
|
383
|
+
}
|
|
384
|
+
],
|
|
385
|
+
"licenses": [
|
|
386
|
+
{
|
|
387
|
+
"expression": "MIT OR Apache-2.0"
|
|
388
|
+
}
|
|
389
|
+
],
|
|
390
|
+
"purl": "pkg:cargo/pyo3-macros@0.29.2",
|
|
391
|
+
"externalReferences": [
|
|
392
|
+
{
|
|
393
|
+
"type": "website",
|
|
394
|
+
"url": "https://github.com/pyo3/pyo3"
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
"type": "vcs",
|
|
398
|
+
"url": "https://github.com/pyo3/pyo3"
|
|
399
|
+
}
|
|
400
|
+
]
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
"type": "library",
|
|
404
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3@0.29.2",
|
|
405
|
+
"author": "PyO3 Project and Contributors <https://github.com/PyO3>",
|
|
406
|
+
"name": "pyo3",
|
|
407
|
+
"version": "0.29.2",
|
|
408
|
+
"description": "Bindings to Python interpreter",
|
|
409
|
+
"scope": "required",
|
|
410
|
+
"hashes": [
|
|
411
|
+
{
|
|
412
|
+
"alg": "SHA-256",
|
|
413
|
+
"content": "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
|
|
414
|
+
}
|
|
415
|
+
],
|
|
416
|
+
"licenses": [
|
|
417
|
+
{
|
|
418
|
+
"expression": "MIT OR Apache-2.0"
|
|
419
|
+
}
|
|
420
|
+
],
|
|
421
|
+
"purl": "pkg:cargo/pyo3@0.29.2",
|
|
422
|
+
"externalReferences": [
|
|
423
|
+
{
|
|
424
|
+
"type": "documentation",
|
|
425
|
+
"url": "https://docs.rs/crate/pyo3/"
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
"type": "website",
|
|
429
|
+
"url": "https://github.com/pyo3/pyo3"
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
"type": "other",
|
|
433
|
+
"url": "pyo3-python"
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
"type": "vcs",
|
|
437
|
+
"url": "https://github.com/pyo3/pyo3"
|
|
438
|
+
}
|
|
439
|
+
]
|
|
440
|
+
},
|
|
441
|
+
{
|
|
442
|
+
"type": "library",
|
|
443
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.47",
|
|
444
|
+
"author": "David Tolnay <dtolnay@gmail.com>",
|
|
445
|
+
"name": "quote",
|
|
446
|
+
"version": "1.0.47",
|
|
447
|
+
"description": "Quasi-quoting macro quote!(...)",
|
|
448
|
+
"scope": "required",
|
|
449
|
+
"hashes": [
|
|
450
|
+
{
|
|
451
|
+
"alg": "SHA-256",
|
|
452
|
+
"content": "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
453
|
+
}
|
|
454
|
+
],
|
|
455
|
+
"licenses": [
|
|
456
|
+
{
|
|
457
|
+
"expression": "MIT OR Apache-2.0"
|
|
458
|
+
}
|
|
459
|
+
],
|
|
460
|
+
"purl": "pkg:cargo/quote@1.0.47",
|
|
461
|
+
"externalReferences": [
|
|
462
|
+
{
|
|
463
|
+
"type": "documentation",
|
|
464
|
+
"url": "https://docs.rs/quote/"
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
"type": "vcs",
|
|
468
|
+
"url": "https://github.com/dtolnay/quote"
|
|
469
|
+
}
|
|
470
|
+
]
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
"type": "library",
|
|
474
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rand@0.10.2",
|
|
475
|
+
"author": "The Rand Project Developers, The Rust Project Developers",
|
|
476
|
+
"name": "rand",
|
|
477
|
+
"version": "0.10.2",
|
|
478
|
+
"description": "Random number generators and other randomness functionality. ",
|
|
479
|
+
"scope": "required",
|
|
480
|
+
"hashes": [
|
|
481
|
+
{
|
|
482
|
+
"alg": "SHA-256",
|
|
483
|
+
"content": "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
|
|
484
|
+
}
|
|
485
|
+
],
|
|
486
|
+
"licenses": [
|
|
487
|
+
{
|
|
488
|
+
"expression": "MIT OR Apache-2.0"
|
|
489
|
+
}
|
|
490
|
+
],
|
|
491
|
+
"purl": "pkg:cargo/rand@0.10.2",
|
|
492
|
+
"externalReferences": [
|
|
493
|
+
{
|
|
494
|
+
"type": "documentation",
|
|
495
|
+
"url": "https://docs.rs/rand"
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
"type": "website",
|
|
499
|
+
"url": "https://rust-random.github.io/book"
|
|
500
|
+
},
|
|
501
|
+
{
|
|
502
|
+
"type": "vcs",
|
|
503
|
+
"url": "https://github.com/rust-random/rand"
|
|
504
|
+
}
|
|
505
|
+
]
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
"type": "library",
|
|
509
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.10.1",
|
|
510
|
+
"author": "The Rand Project Developers",
|
|
511
|
+
"name": "rand_core",
|
|
512
|
+
"version": "0.10.1",
|
|
513
|
+
"description": "Core random number generation traits and tools for implementation.",
|
|
514
|
+
"scope": "required",
|
|
515
|
+
"hashes": [
|
|
516
|
+
{
|
|
517
|
+
"alg": "SHA-256",
|
|
518
|
+
"content": "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
|
|
519
|
+
}
|
|
520
|
+
],
|
|
521
|
+
"licenses": [
|
|
522
|
+
{
|
|
523
|
+
"expression": "MIT OR Apache-2.0"
|
|
524
|
+
}
|
|
525
|
+
],
|
|
526
|
+
"purl": "pkg:cargo/rand_core@0.10.1",
|
|
527
|
+
"externalReferences": [
|
|
528
|
+
{
|
|
529
|
+
"type": "documentation",
|
|
530
|
+
"url": "https://docs.rs/rand_core"
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
"type": "website",
|
|
534
|
+
"url": "https://rust-random.github.io/book"
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
"type": "vcs",
|
|
538
|
+
"url": "https://github.com/rust-random/rand_core"
|
|
539
|
+
}
|
|
540
|
+
]
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"type": "library",
|
|
544
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.119",
|
|
545
|
+
"author": "David Tolnay <dtolnay@gmail.com>",
|
|
546
|
+
"name": "syn",
|
|
547
|
+
"version": "2.0.119",
|
|
548
|
+
"description": "Parser for Rust source code",
|
|
549
|
+
"scope": "required",
|
|
550
|
+
"hashes": [
|
|
551
|
+
{
|
|
552
|
+
"alg": "SHA-256",
|
|
553
|
+
"content": "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
554
|
+
}
|
|
555
|
+
],
|
|
556
|
+
"licenses": [
|
|
557
|
+
{
|
|
558
|
+
"expression": "MIT OR Apache-2.0"
|
|
559
|
+
}
|
|
560
|
+
],
|
|
561
|
+
"purl": "pkg:cargo/syn@2.0.119",
|
|
562
|
+
"externalReferences": [
|
|
563
|
+
{
|
|
564
|
+
"type": "documentation",
|
|
565
|
+
"url": "https://docs.rs/syn"
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
"type": "vcs",
|
|
569
|
+
"url": "https://github.com/dtolnay/syn"
|
|
570
|
+
}
|
|
571
|
+
]
|
|
572
|
+
},
|
|
573
|
+
{
|
|
574
|
+
"type": "library",
|
|
575
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.13.5",
|
|
576
|
+
"author": "Dan Gohman <sunfish@mozilla.com>",
|
|
577
|
+
"name": "target-lexicon",
|
|
578
|
+
"version": "0.13.5",
|
|
579
|
+
"description": "LLVM target triple types",
|
|
580
|
+
"scope": "excluded",
|
|
581
|
+
"hashes": [
|
|
582
|
+
{
|
|
583
|
+
"alg": "SHA-256",
|
|
584
|
+
"content": "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
585
|
+
}
|
|
586
|
+
],
|
|
587
|
+
"licenses": [
|
|
588
|
+
{
|
|
589
|
+
"expression": "Apache-2.0 WITH LLVM-exception"
|
|
590
|
+
}
|
|
591
|
+
],
|
|
592
|
+
"purl": "pkg:cargo/target-lexicon@0.13.5",
|
|
593
|
+
"externalReferences": [
|
|
594
|
+
{
|
|
595
|
+
"type": "documentation",
|
|
596
|
+
"url": "https://docs.rs/target-lexicon/"
|
|
597
|
+
},
|
|
598
|
+
{
|
|
599
|
+
"type": "vcs",
|
|
600
|
+
"url": "https://github.com/bytecodealliance/target-lexicon"
|
|
601
|
+
}
|
|
602
|
+
]
|
|
603
|
+
},
|
|
604
|
+
{
|
|
605
|
+
"type": "library",
|
|
606
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24",
|
|
607
|
+
"author": "David Tolnay <dtolnay@gmail.com>",
|
|
608
|
+
"name": "unicode-ident",
|
|
609
|
+
"version": "1.0.24",
|
|
610
|
+
"description": "Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31",
|
|
611
|
+
"scope": "required",
|
|
612
|
+
"hashes": [
|
|
613
|
+
{
|
|
614
|
+
"alg": "SHA-256",
|
|
615
|
+
"content": "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
616
|
+
}
|
|
617
|
+
],
|
|
618
|
+
"licenses": [
|
|
619
|
+
{
|
|
620
|
+
"expression": "(MIT OR Apache-2.0) AND Unicode-3.0"
|
|
621
|
+
}
|
|
622
|
+
],
|
|
623
|
+
"purl": "pkg:cargo/unicode-ident@1.0.24",
|
|
624
|
+
"externalReferences": [
|
|
625
|
+
{
|
|
626
|
+
"type": "documentation",
|
|
627
|
+
"url": "https://docs.rs/unicode-ident"
|
|
628
|
+
},
|
|
629
|
+
{
|
|
630
|
+
"type": "vcs",
|
|
631
|
+
"url": "https://github.com/dtolnay/unicode-ident"
|
|
632
|
+
}
|
|
633
|
+
]
|
|
634
|
+
}
|
|
635
|
+
],
|
|
636
|
+
"dependencies": [
|
|
637
|
+
{
|
|
638
|
+
"ref": "path+file:///D:/a/dependency_cache/dependency_cache#0.1.0",
|
|
639
|
+
"dependsOn": [
|
|
640
|
+
"registry+https://github.com/rust-lang/crates.io-index#pyo3@0.29.2",
|
|
641
|
+
"registry+https://github.com/rust-lang/crates.io-index#rand@0.10.2"
|
|
642
|
+
]
|
|
643
|
+
},
|
|
644
|
+
{
|
|
645
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4"
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#chacha20@0.10.2",
|
|
649
|
+
"dependsOn": [
|
|
650
|
+
"registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4",
|
|
651
|
+
"registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.3.1",
|
|
652
|
+
"registry+https://github.com/rust-lang/crates.io-index#rand_core@0.10.1"
|
|
653
|
+
]
|
|
654
|
+
},
|
|
655
|
+
{
|
|
656
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.3.1"
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.4.3",
|
|
660
|
+
"dependsOn": [
|
|
661
|
+
"registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4",
|
|
662
|
+
"registry+https://github.com/rust-lang/crates.io-index#rand_core@0.10.1"
|
|
663
|
+
]
|
|
664
|
+
},
|
|
665
|
+
{
|
|
666
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0"
|
|
667
|
+
},
|
|
668
|
+
{
|
|
669
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.187"
|
|
670
|
+
},
|
|
671
|
+
{
|
|
672
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4"
|
|
673
|
+
},
|
|
674
|
+
{
|
|
675
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.107",
|
|
676
|
+
"dependsOn": [
|
|
677
|
+
"registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24"
|
|
678
|
+
]
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.29.2",
|
|
682
|
+
"dependsOn": [
|
|
683
|
+
"registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.13.5"
|
|
684
|
+
]
|
|
685
|
+
},
|
|
686
|
+
{
|
|
687
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-ffi@0.29.2",
|
|
688
|
+
"dependsOn": [
|
|
689
|
+
"registry+https://github.com/rust-lang/crates.io-index#libc@0.2.187",
|
|
690
|
+
"registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.29.2"
|
|
691
|
+
]
|
|
692
|
+
},
|
|
693
|
+
{
|
|
694
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros-backend@0.29.2",
|
|
695
|
+
"dependsOn": [
|
|
696
|
+
"registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0",
|
|
697
|
+
"registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.107",
|
|
698
|
+
"registry+https://github.com/rust-lang/crates.io-index#quote@1.0.47",
|
|
699
|
+
"registry+https://github.com/rust-lang/crates.io-index#syn@2.0.119"
|
|
700
|
+
]
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros@0.29.2",
|
|
704
|
+
"dependsOn": [
|
|
705
|
+
"registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.107",
|
|
706
|
+
"registry+https://github.com/rust-lang/crates.io-index#pyo3-macros-backend@0.29.2",
|
|
707
|
+
"registry+https://github.com/rust-lang/crates.io-index#quote@1.0.47",
|
|
708
|
+
"registry+https://github.com/rust-lang/crates.io-index#syn@2.0.119"
|
|
709
|
+
]
|
|
710
|
+
},
|
|
711
|
+
{
|
|
712
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3@0.29.2",
|
|
713
|
+
"dependsOn": [
|
|
714
|
+
"registry+https://github.com/rust-lang/crates.io-index#libc@0.2.187",
|
|
715
|
+
"registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4",
|
|
716
|
+
"registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.29.2",
|
|
717
|
+
"registry+https://github.com/rust-lang/crates.io-index#pyo3-ffi@0.29.2",
|
|
718
|
+
"registry+https://github.com/rust-lang/crates.io-index#pyo3-macros@0.29.2"
|
|
719
|
+
]
|
|
720
|
+
},
|
|
721
|
+
{
|
|
722
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.47",
|
|
723
|
+
"dependsOn": [
|
|
724
|
+
"registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.107"
|
|
725
|
+
]
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#rand@0.10.2",
|
|
729
|
+
"dependsOn": [
|
|
730
|
+
"registry+https://github.com/rust-lang/crates.io-index#chacha20@0.10.2",
|
|
731
|
+
"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.4.3",
|
|
732
|
+
"registry+https://github.com/rust-lang/crates.io-index#rand_core@0.10.1"
|
|
733
|
+
]
|
|
734
|
+
},
|
|
735
|
+
{
|
|
736
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.10.1"
|
|
737
|
+
},
|
|
738
|
+
{
|
|
739
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.119",
|
|
740
|
+
"dependsOn": [
|
|
741
|
+
"registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.107",
|
|
742
|
+
"registry+https://github.com/rust-lang/crates.io-index#quote@1.0.47",
|
|
743
|
+
"registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24"
|
|
744
|
+
]
|
|
745
|
+
},
|
|
746
|
+
{
|
|
747
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.13.5"
|
|
748
|
+
},
|
|
749
|
+
{
|
|
750
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24"
|
|
751
|
+
}
|
|
752
|
+
]
|
|
753
|
+
}
|