sqlxtralite 0.1.0__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.
sqlxtralite/__init__.py
ADDED
|
Binary file
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: sqlxtralite
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Classifier: Programming Language :: Rust
|
|
5
|
+
Classifier: Programming Language :: Python :: 3
|
|
6
|
+
Classifier: Topic :: Database
|
|
7
|
+
Classifier: Intended Audience :: Developers
|
|
8
|
+
Summary: Python (DB-API 2.0) binding for SQLXtraLite — a from-scratch SQL engine in Rust
|
|
9
|
+
Keywords: sql,database,embedded,sqlite,rust
|
|
10
|
+
Author-email: Barış Akın <barisakin@gmail.com>
|
|
11
|
+
License: AGPL-3.0-only
|
|
12
|
+
Requires-Python: >=3.8
|
|
13
|
+
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
14
|
+
Project-URL: Homepage, https://github.com/parisxmas/SQLXtraLite
|
|
15
|
+
Project-URL: Repository, https://github.com/parisxmas/SQLXtraLite
|
|
16
|
+
|
|
17
|
+
# SQLXtraLite — Python binding (PyO3, DB-API 2.0)
|
|
18
|
+
|
|
19
|
+
A native CPython extension built with [PyO3](https://pyo3.rs) that calls the Rust
|
|
20
|
+
engine directly (no C-ABI round-trip) and exposes a small **DB-API 2.0** surface.
|
|
21
|
+
Values come back as **native Python types** (`int`, `float`, `str`, `bytes`,
|
|
22
|
+
`None`).
|
|
23
|
+
|
|
24
|
+
> There's also a zero-dependency `ctypes` binding in `../python/` — no build tools,
|
|
25
|
+
> but it returns string values. This PyO3 binding is the idiomatic, pip-installable
|
|
26
|
+
> one. The engine crate itself stays dependency-free; PyO3 lives only here.
|
|
27
|
+
|
|
28
|
+
## Build & install
|
|
29
|
+
|
|
30
|
+
```sh
|
|
31
|
+
# from this directory (bindings/pyo3)
|
|
32
|
+
pip install maturin
|
|
33
|
+
|
|
34
|
+
maturin develop --release # build + install into the current venv
|
|
35
|
+
# or build a redistributable wheel:
|
|
36
|
+
maturin build --release # -> target/wheels/sqlxtralite-*.whl
|
|
37
|
+
pip install target/wheels/sqlxtralite-*.whl
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
A plain `cargo build --release` also links a loadable module here (via
|
|
41
|
+
`.cargo/config.toml`); rename `target/release/libsqlxtralite.dylib` → `sqlxtralite.so`
|
|
42
|
+
(`.so` on Linux) on your `PYTHONPATH` to import it without maturin.
|
|
43
|
+
|
|
44
|
+
## Use
|
|
45
|
+
|
|
46
|
+
```python
|
|
47
|
+
import sqlxtralite
|
|
48
|
+
|
|
49
|
+
con = sqlxtralite.connect("shop.db")
|
|
50
|
+
cur = con.cursor()
|
|
51
|
+
cur.execute("CREATE TABLE items (id INTEGER PRIMARY KEY, name TEXT, price REAL)")
|
|
52
|
+
|
|
53
|
+
cur.executemany("INSERT INTO items VALUES (?, ?, ?)",
|
|
54
|
+
[(1, "basil", 2.95), (2, "mint", None)])
|
|
55
|
+
|
|
56
|
+
cur.execute("SELECT * FROM items WHERE price > ?", (1.0,))
|
|
57
|
+
print(cur.description) # [('id', None, …), ('name', …), ('price', …)]
|
|
58
|
+
print(cur.fetchall()) # [(1, 'basil', 2.95)] ← native int / str / float
|
|
59
|
+
print(cur.lastrowid, cur.rowcount)
|
|
60
|
+
con.close()
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
## API (DB-API 2.0 subset)
|
|
64
|
+
|
|
65
|
+
Module: `connect(path)`, `apilevel = "2.0"`, `threadsafety = 1`,
|
|
66
|
+
`paramstyle = "qmark"`, `Error`.
|
|
67
|
+
|
|
68
|
+
| Object | Methods / attrs |
|
|
69
|
+
|---|---|
|
|
70
|
+
| `Connection` | `cursor()`, `execute(sql, params=None)`, `commit()`, `rollback()`, `close()`, context manager |
|
|
71
|
+
| `Cursor` | `execute(sql, params=None)`, `executemany(sql, seq)`, `fetchone()`, `fetchmany(size=1)`, `fetchall()`, `description`, `rowcount`, `lastrowid`, `close()` |
|
|
72
|
+
|
|
73
|
+
Parameters use **qmark** style (`?`), positional; `None`→NULL, `int`/`float`/`str`/
|
|
74
|
+
`bytes` bind directly. Prepared statements are used automatically when you pass
|
|
75
|
+
params (and for `executemany`), giving the engine's fast bind path.
|
|
76
|
+
|
|
77
|
+
## Run the test
|
|
78
|
+
|
|
79
|
+
```sh
|
|
80
|
+
maturin develop --release
|
|
81
|
+
python3 test_dbapi.py
|
|
82
|
+
# OK — PyO3 DB-API binding works
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
## Notes
|
|
86
|
+
|
|
87
|
+
- `Connection`/`Cursor` are `unsendable` — use one connection per thread (the
|
|
88
|
+
engine is single-writer; the GIL serializes calls anyway).
|
|
89
|
+
- SQLXtraLite auto-commits each statement, so `commit()`/`rollback()` are no-ops
|
|
90
|
+
provided for DB-API shape; use explicit `BEGIN`/`COMMIT` SQL for multi-statement
|
|
91
|
+
transactions.
|
|
92
|
+
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
sqlxtralite/__init__.py,sha256=i-TAO1dKeHcI0h7xqo_vY7gnnmJooXL1EbP4olX0DTM,127
|
|
2
|
+
sqlxtralite/sqlxtralite.pyd,sha256=w4dFqvD_9Wq57JUY0AuJw-qrs62diW45bMGbmbC8cOc,1847296
|
|
3
|
+
sqlxtralite-0.1.0.dist-info/METADATA,sha256=a_q8NjYR71MU1VGdLh76RGrIicyA9UnAVXdLggHQTEU,3499
|
|
4
|
+
sqlxtralite-0.1.0.dist-info/WHEEL,sha256=fdxqql7XL4cnyN7OrL_SjRKCGgYJBps58hHqX7lIgJ8,95
|
|
5
|
+
sqlxtralite-0.1.0.dist-info/sboms/sqlxtralite-py.cyclonedx.json,sha256=pa-MdMIBJ192YNxpU8yu_DEdrCbuhPTfmCLWd3_DPa4,17060
|
|
6
|
+
sqlxtralite-0.1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,553 @@
|
|
|
1
|
+
{
|
|
2
|
+
"bomFormat": "CycloneDX",
|
|
3
|
+
"specVersion": "1.5",
|
|
4
|
+
"version": 1,
|
|
5
|
+
"serialNumber": "urn:uuid:861f56f2-7921-43c4-9684-f72e83ca9943",
|
|
6
|
+
"metadata": {
|
|
7
|
+
"timestamp": "2026-06-07T14:33:57.734370900Z",
|
|
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/SQLXtraLite/SQLXtraLite/bindings/pyo3#sqlxtralite-py@0.1.0",
|
|
18
|
+
"name": "sqlxtralite-py",
|
|
19
|
+
"version": "0.1.0",
|
|
20
|
+
"description": "Python binding for SQLXtraLite — a from-scratch SQL engine in Rust",
|
|
21
|
+
"scope": "required",
|
|
22
|
+
"licenses": [
|
|
23
|
+
{
|
|
24
|
+
"expression": "AGPL-3.0-only"
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
"purl": "pkg:cargo/sqlxtralite-py@0.1.0?download_url=file://.",
|
|
28
|
+
"components": [
|
|
29
|
+
{
|
|
30
|
+
"type": "library",
|
|
31
|
+
"bom-ref": "path+file:///D:/a/SQLXtraLite/SQLXtraLite/bindings/pyo3#sqlxtralite-py@0.1.0 bin-target-0",
|
|
32
|
+
"name": "sqlxtralite",
|
|
33
|
+
"version": "0.1.0",
|
|
34
|
+
"purl": "pkg:cargo/sqlxtralite-py@0.1.0?download_url=file://.#src/lib.rs"
|
|
35
|
+
}
|
|
36
|
+
]
|
|
37
|
+
},
|
|
38
|
+
"properties": [
|
|
39
|
+
{
|
|
40
|
+
"name": "cdx:rustc:sbom:target:all_targets",
|
|
41
|
+
"value": "true"
|
|
42
|
+
}
|
|
43
|
+
]
|
|
44
|
+
},
|
|
45
|
+
"components": [
|
|
46
|
+
{
|
|
47
|
+
"type": "library",
|
|
48
|
+
"bom-ref": "path+file:///D:/a/SQLXtraLite/SQLXtraLite#sqlxtralite@0.1.0",
|
|
49
|
+
"author": "Barış Akın <barisakin@gmail.com>",
|
|
50
|
+
"name": "sqlxtralite",
|
|
51
|
+
"version": "0.1.0",
|
|
52
|
+
"description": "SQLXtraLite — a SQLite-competitive RDBMS engine in Rust, built from scratch",
|
|
53
|
+
"scope": "required",
|
|
54
|
+
"licenses": [
|
|
55
|
+
{
|
|
56
|
+
"expression": "AGPL-3.0-only"
|
|
57
|
+
}
|
|
58
|
+
],
|
|
59
|
+
"purl": "pkg:cargo/sqlxtralite@0.1.0?download_url=file://D:\\a\\SQLXtraLite\\SQLXtraLite"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"type": "library",
|
|
63
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0",
|
|
64
|
+
"name": "heck",
|
|
65
|
+
"version": "0.5.0",
|
|
66
|
+
"description": "heck is a case conversion library.",
|
|
67
|
+
"scope": "required",
|
|
68
|
+
"hashes": [
|
|
69
|
+
{
|
|
70
|
+
"alg": "SHA-256",
|
|
71
|
+
"content": "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
72
|
+
}
|
|
73
|
+
],
|
|
74
|
+
"licenses": [
|
|
75
|
+
{
|
|
76
|
+
"expression": "MIT OR Apache-2.0"
|
|
77
|
+
}
|
|
78
|
+
],
|
|
79
|
+
"purl": "pkg:cargo/heck@0.5.0",
|
|
80
|
+
"externalReferences": [
|
|
81
|
+
{
|
|
82
|
+
"type": "vcs",
|
|
83
|
+
"url": "https://github.com/withoutboats/heck"
|
|
84
|
+
}
|
|
85
|
+
]
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"type": "library",
|
|
89
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186",
|
|
90
|
+
"author": "The Rust Project Developers",
|
|
91
|
+
"name": "libc",
|
|
92
|
+
"version": "0.2.186",
|
|
93
|
+
"description": "Raw FFI bindings to platform libraries like libc.",
|
|
94
|
+
"scope": "required",
|
|
95
|
+
"hashes": [
|
|
96
|
+
{
|
|
97
|
+
"alg": "SHA-256",
|
|
98
|
+
"content": "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
99
|
+
}
|
|
100
|
+
],
|
|
101
|
+
"licenses": [
|
|
102
|
+
{
|
|
103
|
+
"expression": "MIT OR Apache-2.0"
|
|
104
|
+
}
|
|
105
|
+
],
|
|
106
|
+
"purl": "pkg:cargo/libc@0.2.186",
|
|
107
|
+
"externalReferences": [
|
|
108
|
+
{
|
|
109
|
+
"type": "vcs",
|
|
110
|
+
"url": "https://github.com/rust-lang/libc"
|
|
111
|
+
}
|
|
112
|
+
]
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"type": "library",
|
|
116
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4",
|
|
117
|
+
"author": "Aleksey Kladov <aleksey.kladov@gmail.com>",
|
|
118
|
+
"name": "once_cell",
|
|
119
|
+
"version": "1.21.4",
|
|
120
|
+
"description": "Single assignment cells and lazy values.",
|
|
121
|
+
"scope": "required",
|
|
122
|
+
"hashes": [
|
|
123
|
+
{
|
|
124
|
+
"alg": "SHA-256",
|
|
125
|
+
"content": "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
126
|
+
}
|
|
127
|
+
],
|
|
128
|
+
"licenses": [
|
|
129
|
+
{
|
|
130
|
+
"expression": "MIT OR Apache-2.0"
|
|
131
|
+
}
|
|
132
|
+
],
|
|
133
|
+
"purl": "pkg:cargo/once_cell@1.21.4",
|
|
134
|
+
"externalReferences": [
|
|
135
|
+
{
|
|
136
|
+
"type": "documentation",
|
|
137
|
+
"url": "https://docs.rs/once_cell"
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"type": "vcs",
|
|
141
|
+
"url": "https://github.com/matklad/once_cell"
|
|
142
|
+
}
|
|
143
|
+
]
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"type": "library",
|
|
147
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
|
|
148
|
+
"author": "David Tolnay <dtolnay@gmail.com>, Alex Crichton <alex@alexcrichton.com>",
|
|
149
|
+
"name": "proc-macro2",
|
|
150
|
+
"version": "1.0.106",
|
|
151
|
+
"description": "A substitute implementation of the compiler's `proc_macro` API to decouple token-based libraries from the procedural macro use case.",
|
|
152
|
+
"scope": "required",
|
|
153
|
+
"hashes": [
|
|
154
|
+
{
|
|
155
|
+
"alg": "SHA-256",
|
|
156
|
+
"content": "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
157
|
+
}
|
|
158
|
+
],
|
|
159
|
+
"licenses": [
|
|
160
|
+
{
|
|
161
|
+
"expression": "MIT OR Apache-2.0"
|
|
162
|
+
}
|
|
163
|
+
],
|
|
164
|
+
"purl": "pkg:cargo/proc-macro2@1.0.106",
|
|
165
|
+
"externalReferences": [
|
|
166
|
+
{
|
|
167
|
+
"type": "documentation",
|
|
168
|
+
"url": "https://docs.rs/proc-macro2"
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"type": "vcs",
|
|
172
|
+
"url": "https://github.com/dtolnay/proc-macro2"
|
|
173
|
+
}
|
|
174
|
+
]
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"type": "library",
|
|
178
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.28.3",
|
|
179
|
+
"author": "PyO3 Project and Contributors <https://github.com/PyO3>",
|
|
180
|
+
"name": "pyo3-build-config",
|
|
181
|
+
"version": "0.28.3",
|
|
182
|
+
"description": "Build configuration for the PyO3 ecosystem",
|
|
183
|
+
"scope": "required",
|
|
184
|
+
"hashes": [
|
|
185
|
+
{
|
|
186
|
+
"alg": "SHA-256",
|
|
187
|
+
"content": "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
|
|
188
|
+
}
|
|
189
|
+
],
|
|
190
|
+
"licenses": [
|
|
191
|
+
{
|
|
192
|
+
"expression": "MIT OR Apache-2.0"
|
|
193
|
+
}
|
|
194
|
+
],
|
|
195
|
+
"purl": "pkg:cargo/pyo3-build-config@0.28.3",
|
|
196
|
+
"externalReferences": [
|
|
197
|
+
{
|
|
198
|
+
"type": "website",
|
|
199
|
+
"url": "https://github.com/pyo3/pyo3"
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"type": "vcs",
|
|
203
|
+
"url": "https://github.com/pyo3/pyo3"
|
|
204
|
+
}
|
|
205
|
+
]
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"type": "library",
|
|
209
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-ffi@0.28.3",
|
|
210
|
+
"author": "PyO3 Project and Contributors <https://github.com/PyO3>",
|
|
211
|
+
"name": "pyo3-ffi",
|
|
212
|
+
"version": "0.28.3",
|
|
213
|
+
"description": "Python-API bindings for the PyO3 ecosystem",
|
|
214
|
+
"scope": "required",
|
|
215
|
+
"hashes": [
|
|
216
|
+
{
|
|
217
|
+
"alg": "SHA-256",
|
|
218
|
+
"content": "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
|
|
219
|
+
}
|
|
220
|
+
],
|
|
221
|
+
"licenses": [
|
|
222
|
+
{
|
|
223
|
+
"expression": "MIT OR Apache-2.0"
|
|
224
|
+
}
|
|
225
|
+
],
|
|
226
|
+
"purl": "pkg:cargo/pyo3-ffi@0.28.3",
|
|
227
|
+
"externalReferences": [
|
|
228
|
+
{
|
|
229
|
+
"type": "website",
|
|
230
|
+
"url": "https://github.com/pyo3/pyo3"
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"type": "other",
|
|
234
|
+
"url": "python"
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"type": "vcs",
|
|
238
|
+
"url": "https://github.com/pyo3/pyo3"
|
|
239
|
+
}
|
|
240
|
+
]
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"type": "library",
|
|
244
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros-backend@0.28.3",
|
|
245
|
+
"author": "PyO3 Project and Contributors <https://github.com/PyO3>",
|
|
246
|
+
"name": "pyo3-macros-backend",
|
|
247
|
+
"version": "0.28.3",
|
|
248
|
+
"description": "Code generation for PyO3 package",
|
|
249
|
+
"scope": "required",
|
|
250
|
+
"hashes": [
|
|
251
|
+
{
|
|
252
|
+
"alg": "SHA-256",
|
|
253
|
+
"content": "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
|
|
254
|
+
}
|
|
255
|
+
],
|
|
256
|
+
"licenses": [
|
|
257
|
+
{
|
|
258
|
+
"expression": "MIT OR Apache-2.0"
|
|
259
|
+
}
|
|
260
|
+
],
|
|
261
|
+
"purl": "pkg:cargo/pyo3-macros-backend@0.28.3",
|
|
262
|
+
"externalReferences": [
|
|
263
|
+
{
|
|
264
|
+
"type": "website",
|
|
265
|
+
"url": "https://github.com/pyo3/pyo3"
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"type": "vcs",
|
|
269
|
+
"url": "https://github.com/pyo3/pyo3"
|
|
270
|
+
}
|
|
271
|
+
]
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"type": "library",
|
|
275
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros@0.28.3",
|
|
276
|
+
"author": "PyO3 Project and Contributors <https://github.com/PyO3>",
|
|
277
|
+
"name": "pyo3-macros",
|
|
278
|
+
"version": "0.28.3",
|
|
279
|
+
"description": "Proc macros for PyO3 package",
|
|
280
|
+
"scope": "required",
|
|
281
|
+
"hashes": [
|
|
282
|
+
{
|
|
283
|
+
"alg": "SHA-256",
|
|
284
|
+
"content": "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
|
|
285
|
+
}
|
|
286
|
+
],
|
|
287
|
+
"licenses": [
|
|
288
|
+
{
|
|
289
|
+
"expression": "MIT OR Apache-2.0"
|
|
290
|
+
}
|
|
291
|
+
],
|
|
292
|
+
"purl": "pkg:cargo/pyo3-macros@0.28.3",
|
|
293
|
+
"externalReferences": [
|
|
294
|
+
{
|
|
295
|
+
"type": "website",
|
|
296
|
+
"url": "https://github.com/pyo3/pyo3"
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"type": "vcs",
|
|
300
|
+
"url": "https://github.com/pyo3/pyo3"
|
|
301
|
+
}
|
|
302
|
+
]
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"type": "library",
|
|
306
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3@0.28.3",
|
|
307
|
+
"author": "PyO3 Project and Contributors <https://github.com/PyO3>",
|
|
308
|
+
"name": "pyo3",
|
|
309
|
+
"version": "0.28.3",
|
|
310
|
+
"description": "Bindings to Python interpreter",
|
|
311
|
+
"scope": "required",
|
|
312
|
+
"hashes": [
|
|
313
|
+
{
|
|
314
|
+
"alg": "SHA-256",
|
|
315
|
+
"content": "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
|
|
316
|
+
}
|
|
317
|
+
],
|
|
318
|
+
"licenses": [
|
|
319
|
+
{
|
|
320
|
+
"expression": "MIT OR Apache-2.0"
|
|
321
|
+
}
|
|
322
|
+
],
|
|
323
|
+
"purl": "pkg:cargo/pyo3@0.28.3",
|
|
324
|
+
"externalReferences": [
|
|
325
|
+
{
|
|
326
|
+
"type": "documentation",
|
|
327
|
+
"url": "https://docs.rs/crate/pyo3/"
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
"type": "website",
|
|
331
|
+
"url": "https://github.com/pyo3/pyo3"
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"type": "vcs",
|
|
335
|
+
"url": "https://github.com/pyo3/pyo3"
|
|
336
|
+
}
|
|
337
|
+
]
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"type": "library",
|
|
341
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
|
|
342
|
+
"author": "David Tolnay <dtolnay@gmail.com>",
|
|
343
|
+
"name": "quote",
|
|
344
|
+
"version": "1.0.45",
|
|
345
|
+
"description": "Quasi-quoting macro quote!(...)",
|
|
346
|
+
"scope": "required",
|
|
347
|
+
"hashes": [
|
|
348
|
+
{
|
|
349
|
+
"alg": "SHA-256",
|
|
350
|
+
"content": "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
351
|
+
}
|
|
352
|
+
],
|
|
353
|
+
"licenses": [
|
|
354
|
+
{
|
|
355
|
+
"expression": "MIT OR Apache-2.0"
|
|
356
|
+
}
|
|
357
|
+
],
|
|
358
|
+
"purl": "pkg:cargo/quote@1.0.45",
|
|
359
|
+
"externalReferences": [
|
|
360
|
+
{
|
|
361
|
+
"type": "documentation",
|
|
362
|
+
"url": "https://docs.rs/quote/"
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"type": "vcs",
|
|
366
|
+
"url": "https://github.com/dtolnay/quote"
|
|
367
|
+
}
|
|
368
|
+
]
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"type": "library",
|
|
372
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117",
|
|
373
|
+
"author": "David Tolnay <dtolnay@gmail.com>",
|
|
374
|
+
"name": "syn",
|
|
375
|
+
"version": "2.0.117",
|
|
376
|
+
"description": "Parser for Rust source code",
|
|
377
|
+
"scope": "required",
|
|
378
|
+
"hashes": [
|
|
379
|
+
{
|
|
380
|
+
"alg": "SHA-256",
|
|
381
|
+
"content": "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
382
|
+
}
|
|
383
|
+
],
|
|
384
|
+
"licenses": [
|
|
385
|
+
{
|
|
386
|
+
"expression": "MIT OR Apache-2.0"
|
|
387
|
+
}
|
|
388
|
+
],
|
|
389
|
+
"purl": "pkg:cargo/syn@2.0.117",
|
|
390
|
+
"externalReferences": [
|
|
391
|
+
{
|
|
392
|
+
"type": "documentation",
|
|
393
|
+
"url": "https://docs.rs/syn"
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"type": "vcs",
|
|
397
|
+
"url": "https://github.com/dtolnay/syn"
|
|
398
|
+
}
|
|
399
|
+
]
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"type": "library",
|
|
403
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.13.5",
|
|
404
|
+
"author": "Dan Gohman <sunfish@mozilla.com>",
|
|
405
|
+
"name": "target-lexicon",
|
|
406
|
+
"version": "0.13.5",
|
|
407
|
+
"description": "LLVM target triple types",
|
|
408
|
+
"scope": "required",
|
|
409
|
+
"hashes": [
|
|
410
|
+
{
|
|
411
|
+
"alg": "SHA-256",
|
|
412
|
+
"content": "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
413
|
+
}
|
|
414
|
+
],
|
|
415
|
+
"licenses": [
|
|
416
|
+
{
|
|
417
|
+
"expression": "Apache-2.0 WITH LLVM-exception"
|
|
418
|
+
}
|
|
419
|
+
],
|
|
420
|
+
"purl": "pkg:cargo/target-lexicon@0.13.5",
|
|
421
|
+
"externalReferences": [
|
|
422
|
+
{
|
|
423
|
+
"type": "documentation",
|
|
424
|
+
"url": "https://docs.rs/target-lexicon/"
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
"type": "vcs",
|
|
428
|
+
"url": "https://github.com/bytecodealliance/target-lexicon"
|
|
429
|
+
}
|
|
430
|
+
]
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
"type": "library",
|
|
434
|
+
"bom-ref": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24",
|
|
435
|
+
"author": "David Tolnay <dtolnay@gmail.com>",
|
|
436
|
+
"name": "unicode-ident",
|
|
437
|
+
"version": "1.0.24",
|
|
438
|
+
"description": "Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31",
|
|
439
|
+
"scope": "required",
|
|
440
|
+
"hashes": [
|
|
441
|
+
{
|
|
442
|
+
"alg": "SHA-256",
|
|
443
|
+
"content": "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
444
|
+
}
|
|
445
|
+
],
|
|
446
|
+
"licenses": [
|
|
447
|
+
{
|
|
448
|
+
"expression": "(MIT OR Apache-2.0) AND Unicode-3.0"
|
|
449
|
+
}
|
|
450
|
+
],
|
|
451
|
+
"purl": "pkg:cargo/unicode-ident@1.0.24",
|
|
452
|
+
"externalReferences": [
|
|
453
|
+
{
|
|
454
|
+
"type": "documentation",
|
|
455
|
+
"url": "https://docs.rs/unicode-ident"
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"type": "vcs",
|
|
459
|
+
"url": "https://github.com/dtolnay/unicode-ident"
|
|
460
|
+
}
|
|
461
|
+
]
|
|
462
|
+
}
|
|
463
|
+
],
|
|
464
|
+
"dependencies": [
|
|
465
|
+
{
|
|
466
|
+
"ref": "path+file:///D:/a/SQLXtraLite/SQLXtraLite#sqlxtralite@0.1.0"
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
"ref": "path+file:///D:/a/SQLXtraLite/SQLXtraLite/bindings/pyo3#sqlxtralite-py@0.1.0",
|
|
470
|
+
"dependsOn": [
|
|
471
|
+
"registry+https://github.com/rust-lang/crates.io-index#pyo3@0.28.3",
|
|
472
|
+
"path+file:///D:/a/SQLXtraLite/SQLXtraLite#sqlxtralite@0.1.0"
|
|
473
|
+
]
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0"
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186"
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4"
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
|
|
486
|
+
"dependsOn": [
|
|
487
|
+
"registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24"
|
|
488
|
+
]
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.28.3",
|
|
492
|
+
"dependsOn": [
|
|
493
|
+
"registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.13.5"
|
|
494
|
+
]
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-ffi@0.28.3",
|
|
498
|
+
"dependsOn": [
|
|
499
|
+
"registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186",
|
|
500
|
+
"registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.28.3"
|
|
501
|
+
]
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros-backend@0.28.3",
|
|
505
|
+
"dependsOn": [
|
|
506
|
+
"registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0",
|
|
507
|
+
"registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
|
|
508
|
+
"registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.28.3",
|
|
509
|
+
"registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
|
|
510
|
+
"registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117"
|
|
511
|
+
]
|
|
512
|
+
},
|
|
513
|
+
{
|
|
514
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros@0.28.3",
|
|
515
|
+
"dependsOn": [
|
|
516
|
+
"registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
|
|
517
|
+
"registry+https://github.com/rust-lang/crates.io-index#pyo3-macros-backend@0.28.3",
|
|
518
|
+
"registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
|
|
519
|
+
"registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117"
|
|
520
|
+
]
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3@0.28.3",
|
|
524
|
+
"dependsOn": [
|
|
525
|
+
"registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186",
|
|
526
|
+
"registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4",
|
|
527
|
+
"registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.28.3",
|
|
528
|
+
"registry+https://github.com/rust-lang/crates.io-index#pyo3-ffi@0.28.3",
|
|
529
|
+
"registry+https://github.com/rust-lang/crates.io-index#pyo3-macros@0.28.3"
|
|
530
|
+
]
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
|
|
534
|
+
"dependsOn": [
|
|
535
|
+
"registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106"
|
|
536
|
+
]
|
|
537
|
+
},
|
|
538
|
+
{
|
|
539
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117",
|
|
540
|
+
"dependsOn": [
|
|
541
|
+
"registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
|
|
542
|
+
"registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
|
|
543
|
+
"registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24"
|
|
544
|
+
]
|
|
545
|
+
},
|
|
546
|
+
{
|
|
547
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.13.5"
|
|
548
|
+
},
|
|
549
|
+
{
|
|
550
|
+
"ref": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24"
|
|
551
|
+
}
|
|
552
|
+
]
|
|
553
|
+
}
|