hypertile 0.1.0__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.
Files changed (33) hide show
  1. hypertile-0.1.0/Cargo.lock +461 -0
  2. hypertile-0.1.0/Cargo.toml +11 -0
  3. hypertile-0.1.0/LICENSE-APACHE +113 -0
  4. hypertile-0.1.0/LICENSE-MIT +21 -0
  5. hypertile-0.1.0/PKG-INFO +281 -0
  6. hypertile-0.1.0/README.md +259 -0
  7. hypertile-0.1.0/hypertile-core/Cargo.lock +328 -0
  8. hypertile-0.1.0/hypertile-core/Cargo.toml +23 -0
  9. hypertile-0.1.0/hypertile-core/benches/bench_queue.rs +66 -0
  10. hypertile-0.1.0/hypertile-core/src/executor.rs +234 -0
  11. hypertile-0.1.0/hypertile-core/src/lib.rs +35 -0
  12. hypertile-0.1.0/hypertile-core/src/registration.rs +51 -0
  13. hypertile-0.1.0/hypertile-core/src/runtime.rs +163 -0
  14. hypertile-0.1.0/hypertile-core/src/slab.rs +44 -0
  15. hypertile-0.1.0/hypertile-core/src/task.rs +285 -0
  16. hypertile-0.1.0/hypertile-core/src/timer.rs +185 -0
  17. hypertile-0.1.0/hypertile-core/src/waker.rs +114 -0
  18. hypertile-0.1.0/hypertile-core/src/worker.rs +276 -0
  19. hypertile-0.1.0/hypertile-core/tests/integration_tests.rs +148 -0
  20. hypertile-0.1.0/hypertile-sys/Cargo.toml +16 -0
  21. hypertile-0.1.0/hypertile-sys/LICENSE-APACHE +113 -0
  22. hypertile-0.1.0/hypertile-sys/LICENSE-MIT +21 -0
  23. hypertile-0.1.0/hypertile-sys/src/bilingual.rs +129 -0
  24. hypertile-0.1.0/hypertile-sys/src/cancel.rs +48 -0
  25. hypertile-0.1.0/hypertile-sys/src/exceptions.rs +25 -0
  26. hypertile-0.1.0/hypertile-sys/src/lib.rs +665 -0
  27. hypertile-0.1.0/pyproject.toml +42 -0
  28. hypertile-0.1.0/python/hypertile/__init__.py +301 -0
  29. hypertile-0.1.0/python/hypertile/__init__.pyi +65 -0
  30. hypertile-0.1.0/python/hypertile/_hypertile_sys.pyi +74 -0
  31. hypertile-0.1.0/python/hypertile/asyncio_policy.py +126 -0
  32. hypertile-0.1.0/python/hypertile/py.typed +0 -0
  33. hypertile-0.1.0/python/hypertile/signals.py +37 -0
@@ -0,0 +1,461 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "autocfg"
7
+ version = "1.5.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
10
+
11
+ [[package]]
12
+ name = "bitflags"
13
+ version = "2.13.1"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
16
+
17
+ [[package]]
18
+ name = "cfg-if"
19
+ version = "1.0.4"
20
+ source = "registry+https://github.com/rust-lang/crates.io-index"
21
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
22
+
23
+ [[package]]
24
+ name = "crossbeam-deque"
25
+ version = "0.8.8"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "622f3fc73690be383c7214310406f28a90e6edeadc3cea882f9d71e495b9711a"
28
+ dependencies = [
29
+ "crossbeam-epoch",
30
+ "crossbeam-utils",
31
+ ]
32
+
33
+ [[package]]
34
+ name = "crossbeam-epoch"
35
+ version = "0.9.21"
36
+ source = "registry+https://github.com/rust-lang/crates.io-index"
37
+ checksum = "dc74980687109a3b14c72fd458107bf0baa1da1a1a805e178d15501ba9b86d9d"
38
+ dependencies = [
39
+ "crossbeam-utils",
40
+ ]
41
+
42
+ [[package]]
43
+ name = "crossbeam-utils"
44
+ version = "0.8.23"
45
+ source = "registry+https://github.com/rust-lang/crates.io-index"
46
+ checksum = "a31eee39dddec8330830986fcd7625edb5a24ec90ea038215273bbc3adb08ac6"
47
+
48
+ [[package]]
49
+ name = "fastrand"
50
+ version = "2.5.0"
51
+ source = "registry+https://github.com/rust-lang/crates.io-index"
52
+ checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
53
+
54
+ [[package]]
55
+ name = "futures-core"
56
+ version = "0.3.34"
57
+ source = "registry+https://github.com/rust-lang/crates.io-index"
58
+ checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
59
+
60
+ [[package]]
61
+ name = "futures-io"
62
+ version = "0.3.34"
63
+ source = "registry+https://github.com/rust-lang/crates.io-index"
64
+ checksum = "53c0fa8157de1303bfffdaa1cc2a673bfffb60102f76b0ef4441659124373fed"
65
+
66
+ [[package]]
67
+ name = "futures-lite"
68
+ version = "2.6.1"
69
+ source = "registry+https://github.com/rust-lang/crates.io-index"
70
+ checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad"
71
+ dependencies = [
72
+ "fastrand",
73
+ "futures-core",
74
+ "futures-io",
75
+ "parking",
76
+ "pin-project-lite",
77
+ ]
78
+
79
+ [[package]]
80
+ name = "futures-task"
81
+ version = "0.3.34"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
84
+
85
+ [[package]]
86
+ name = "futures-util"
87
+ version = "0.3.34"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
90
+ dependencies = [
91
+ "futures-core",
92
+ "futures-task",
93
+ "pin-project-lite",
94
+ "slab",
95
+ ]
96
+
97
+ [[package]]
98
+ name = "getrandom"
99
+ version = "0.2.17"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
102
+ dependencies = [
103
+ "cfg-if",
104
+ "libc",
105
+ "wasi",
106
+ ]
107
+
108
+ [[package]]
109
+ name = "heck"
110
+ version = "0.5.0"
111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
112
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
113
+
114
+ [[package]]
115
+ name = "hypertile-core"
116
+ version = "0.1.0"
117
+ dependencies = [
118
+ "crossbeam-deque",
119
+ "crossbeam-utils",
120
+ "futures-core",
121
+ "futures-lite",
122
+ "futures-util",
123
+ "parking_lot",
124
+ "rand",
125
+ "thiserror",
126
+ ]
127
+
128
+ [[package]]
129
+ name = "hypertile-sys"
130
+ version = "0.1.0"
131
+ dependencies = [
132
+ "hypertile-core",
133
+ "parking_lot",
134
+ "pyo3",
135
+ "thiserror",
136
+ ]
137
+
138
+ [[package]]
139
+ name = "indoc"
140
+ version = "2.0.7"
141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
142
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
143
+ dependencies = [
144
+ "rustversion",
145
+ ]
146
+
147
+ [[package]]
148
+ name = "libc"
149
+ version = "0.2.189"
150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
151
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
152
+
153
+ [[package]]
154
+ name = "lock_api"
155
+ version = "0.4.14"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
158
+ dependencies = [
159
+ "scopeguard",
160
+ ]
161
+
162
+ [[package]]
163
+ name = "memoffset"
164
+ version = "0.9.1"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
167
+ dependencies = [
168
+ "autocfg",
169
+ ]
170
+
171
+ [[package]]
172
+ name = "once_cell"
173
+ version = "1.21.4"
174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
175
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
176
+
177
+ [[package]]
178
+ name = "parking"
179
+ version = "2.2.1"
180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
181
+ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
182
+
183
+ [[package]]
184
+ name = "parking_lot"
185
+ version = "0.12.5"
186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
187
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
188
+ dependencies = [
189
+ "lock_api",
190
+ "parking_lot_core",
191
+ ]
192
+
193
+ [[package]]
194
+ name = "parking_lot_core"
195
+ version = "0.9.12"
196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
197
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
198
+ dependencies = [
199
+ "cfg-if",
200
+ "libc",
201
+ "redox_syscall",
202
+ "smallvec",
203
+ "windows-link",
204
+ ]
205
+
206
+ [[package]]
207
+ name = "pin-project-lite"
208
+ version = "0.2.17"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
211
+
212
+ [[package]]
213
+ name = "portable-atomic"
214
+ version = "1.15.0"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
217
+
218
+ [[package]]
219
+ name = "ppv-lite86"
220
+ version = "0.2.21"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
223
+ dependencies = [
224
+ "zerocopy",
225
+ ]
226
+
227
+ [[package]]
228
+ name = "proc-macro2"
229
+ version = "1.0.107"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
232
+ dependencies = [
233
+ "unicode-ident",
234
+ ]
235
+
236
+ [[package]]
237
+ name = "pyo3"
238
+ version = "0.23.5"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
241
+ dependencies = [
242
+ "cfg-if",
243
+ "indoc",
244
+ "libc",
245
+ "memoffset",
246
+ "once_cell",
247
+ "portable-atomic",
248
+ "pyo3-build-config",
249
+ "pyo3-ffi",
250
+ "pyo3-macros",
251
+ "unindent",
252
+ ]
253
+
254
+ [[package]]
255
+ name = "pyo3-build-config"
256
+ version = "0.23.5"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
259
+ dependencies = [
260
+ "once_cell",
261
+ "target-lexicon",
262
+ ]
263
+
264
+ [[package]]
265
+ name = "pyo3-ffi"
266
+ version = "0.23.5"
267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
268
+ checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
269
+ dependencies = [
270
+ "libc",
271
+ "pyo3-build-config",
272
+ ]
273
+
274
+ [[package]]
275
+ name = "pyo3-macros"
276
+ version = "0.23.5"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
279
+ dependencies = [
280
+ "proc-macro2",
281
+ "pyo3-macros-backend",
282
+ "quote",
283
+ "syn 2.0.119",
284
+ ]
285
+
286
+ [[package]]
287
+ name = "pyo3-macros-backend"
288
+ version = "0.23.5"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
291
+ dependencies = [
292
+ "heck",
293
+ "proc-macro2",
294
+ "pyo3-build-config",
295
+ "quote",
296
+ "syn 2.0.119",
297
+ ]
298
+
299
+ [[package]]
300
+ name = "quote"
301
+ version = "1.0.47"
302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
303
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
304
+ dependencies = [
305
+ "proc-macro2",
306
+ ]
307
+
308
+ [[package]]
309
+ name = "rand"
310
+ version = "0.8.8"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "e058c7de0b26af77780c769414d6257830bb240f3c38477dbc2c16e5f54d6d4c"
313
+ dependencies = [
314
+ "libc",
315
+ "rand_chacha",
316
+ "rand_core",
317
+ ]
318
+
319
+ [[package]]
320
+ name = "rand_chacha"
321
+ version = "0.3.1"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
324
+ dependencies = [
325
+ "ppv-lite86",
326
+ "rand_core",
327
+ ]
328
+
329
+ [[package]]
330
+ name = "rand_core"
331
+ version = "0.6.4"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
334
+ dependencies = [
335
+ "getrandom",
336
+ ]
337
+
338
+ [[package]]
339
+ name = "redox_syscall"
340
+ version = "0.5.18"
341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
342
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
343
+ dependencies = [
344
+ "bitflags",
345
+ ]
346
+
347
+ [[package]]
348
+ name = "rustversion"
349
+ version = "1.0.23"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
352
+
353
+ [[package]]
354
+ name = "scopeguard"
355
+ version = "1.2.0"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
358
+
359
+ [[package]]
360
+ name = "slab"
361
+ version = "0.4.12"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
364
+
365
+ [[package]]
366
+ name = "smallvec"
367
+ version = "1.16.0"
368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
369
+ checksum = "b9be42f50aa861c555654aa3a37f52f4b1074bacf4e48fe0ef7fa584e80f1f0f"
370
+
371
+ [[package]]
372
+ name = "syn"
373
+ version = "2.0.119"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
376
+ dependencies = [
377
+ "proc-macro2",
378
+ "quote",
379
+ "unicode-ident",
380
+ ]
381
+
382
+ [[package]]
383
+ name = "syn"
384
+ version = "3.0.5"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "12df2e0110f65b775f769bb17ef989067a1d931b2eb822bd4346631eeada89f9"
387
+ dependencies = [
388
+ "proc-macro2",
389
+ "quote",
390
+ "unicode-ident",
391
+ ]
392
+
393
+ [[package]]
394
+ name = "target-lexicon"
395
+ version = "0.12.16"
396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
397
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
398
+
399
+ [[package]]
400
+ name = "thiserror"
401
+ version = "2.0.20"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
404
+ dependencies = [
405
+ "thiserror-impl",
406
+ ]
407
+
408
+ [[package]]
409
+ name = "thiserror-impl"
410
+ version = "2.0.20"
411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
412
+ checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
413
+ dependencies = [
414
+ "proc-macro2",
415
+ "quote",
416
+ "syn 3.0.5",
417
+ ]
418
+
419
+ [[package]]
420
+ name = "unicode-ident"
421
+ version = "1.0.24"
422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
423
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
424
+
425
+ [[package]]
426
+ name = "unindent"
427
+ version = "0.2.4"
428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
429
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
430
+
431
+ [[package]]
432
+ name = "wasi"
433
+ version = "0.11.1+wasi-snapshot-preview1"
434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
435
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
436
+
437
+ [[package]]
438
+ name = "windows-link"
439
+ version = "0.2.1"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
442
+
443
+ [[package]]
444
+ name = "zerocopy"
445
+ version = "0.8.57"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "d35102a9f36d089ccae9e4c6802bc118be4487b80aaffc0ab4e0cf5ce92d2873"
448
+ dependencies = [
449
+ "zerocopy-derive",
450
+ ]
451
+
452
+ [[package]]
453
+ name = "zerocopy-derive"
454
+ version = "0.8.57"
455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
456
+ checksum = "146c01f5ab44258da43cf276c74a2763db2ff3969c9c652c3f2de07041d0b2bc"
457
+ dependencies = [
458
+ "proc-macro2",
459
+ "quote",
460
+ "syn 2.0.119",
461
+ ]
@@ -0,0 +1,11 @@
1
+ [workspace]
2
+ members = ["hypertile-core", "hypertile-sys"]
3
+ resolver = "2"
4
+
5
+ [profile.release]
6
+ opt-level = 3
7
+ lto = "thin"
8
+ codegen-units = 1
9
+ panic = "unwind"
10
+ strip = "symbols"
11
+
@@ -0,0 +1,113 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work.
38
+
39
+ "Derivative Works" shall mean any work, whether in Source or Object
40
+ form, that is based on (or derived from) the Work and for which the
41
+ editorial revisions, annotations, elaborations, or other modifications
42
+ represent, as a whole, an original work of authorship. For the purposes
43
+ of this License, Derivative Works shall not include works that remain
44
+ separable from, or merely link (or bind by name) to the interfaces of,
45
+ the Work and Derivative Works thereof.
46
+
47
+ "Contribution" shall mean any work of authorship, including
48
+ the original version of the Work and any modifications or additions
49
+ to that Work or Derivative Works thereof, that is intentionally
50
+ submitted to Licensor for inclusion in the Work by the copyright owner
51
+ or by an individual or Legal Entity authorized to submit on behalf of
52
+ the copyright owner.
53
+
54
+ 2. Grant of Copyright License. Subject to the terms and conditions of
55
+ this License, each Contributor hereby grants to You a perpetual,
56
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
57
+ copyright license to reproduce, prepare Derivative Works of,
58
+ publicly display, publicly perform, sublicense, and distribute the
59
+ Work and such Derivative Works in Source or Object form.
60
+
61
+ 3. Grant of Patent License. Subject to the terms and conditions of
62
+ this License, each Contributor hereby grants to You a perpetual,
63
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
64
+ patent license to make, have made, use, offer to sell, sell, import,
65
+ and otherwise transfer the Work.
66
+
67
+ 4. Redistribution. You may reproduce and distribute copies of the
68
+ Work or Derivative Works thereof in any medium, with or without
69
+ modifications, and in Source or Object form, provided that You
70
+ meet the following conditions:
71
+
72
+ (a) You must give any other recipients of the Work or
73
+ Derivative Works a copy of this License; and
74
+
75
+ (b) You must cause any modified files to carry prominent notices
76
+ stating that You changed the files; and
77
+
78
+ (c) You must retain, in the Source form of any Derivative Works
79
+ that You distribute, all copyright, patent, trademark, and
80
+ attribution notices from the Source form of the Work; and
81
+
82
+ (d) If the Work includes a "NOTICE" text file as part of its
83
+ distribution, then any Derivative Works that You distribute must
84
+ include a readable copy of the attribution notices contained
85
+ within such NOTICE file.
86
+
87
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
88
+ any Contribution intentionally submitted for inclusion in the Work
89
+ by You to the Licensor shall be under the terms and conditions of
90
+ this License, without any additional terms or conditions.
91
+
92
+ 6. Trademarks. This License does not grant permission to use the trade
93
+ names, trademarks, service marks, or product names of the Licensor.
94
+
95
+ 7. Disclaimer of Warranty. Unless required by applicable law or
96
+ agreed to in writing, Licensor provides the Work (and each
97
+ Contributor provides its Contributions) on an "AS IS" BASIS,
98
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
99
+ implied, including, without limitation, any warranties or conditions
100
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
101
+ PARTICULAR PURPOSE.
102
+
103
+ 8. Limitation of Liability. In no event and under no legal theory,
104
+ whether in tort (including negligence), contract, or otherwise,
105
+ shall any Contributor be liable to You for damages.
106
+
107
+ 9. Accepting Warranty or Additional Liability. While redistributing
108
+ the Work or Derivative Works thereof, You may choose to offer,
109
+ and charge a fee for, acceptance of support, warranty, indemnity,
110
+ or other liability obligations and/or rights consistent with this
111
+ License.
112
+
113
+ END OF TERMS AND CONDITIONS
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Hypertile Contributors
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.