amoskeag-rb 0.1.2 → 0.1.4
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.
- checksums.yaml +4 -4
- data/ext/amoskeag/Cargo.lock +432 -0
- data/ext/amoskeag/Cargo.toml +22 -0
- data/ext/amoskeag/Makefile +584 -0
- data/ext/amoskeag/amoskeag_native.so +0 -0
- data/ext/amoskeag/mkmf.log +16 -0
- data/ext/amoskeag/src/lib.rs +607 -0
- data/lib/amoskeag-rb/version.rb +1 -1
- metadata +7 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4274f130e0f670e6dea75c271b810f7e0b91c9090d891095a43bc87568975d81
|
|
4
|
+
data.tar.gz: 1f455f4b37be106924552350d84833d005134a4901ea09b68df57343b1982af2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1e9a9b2741b041d1c4566398e7d748d6321e27b164570ef20a3abb3fd09b944912062d5be92aa047e63daf4eee3fc7823054030015e798d7a00c63448da52b4d
|
|
7
|
+
data.tar.gz: f9d8010c823db56f8ff86aeeb6f31efd063012f8ec4a28a9379a899ea309c8858248cf6eae376b54659b27c4bbe75082379c34729a05bdab81c92843edab8b6f
|
|
@@ -0,0 +1,432 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "aho-corasick"
|
|
7
|
+
version = "1.1.4"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"memchr",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "amoskeag"
|
|
16
|
+
version = "0.1.0"
|
|
17
|
+
source = "git+https://github.com/durable-oss/amoskeag#0099868980265f214d6fe1048eb87a8aa7593af3"
|
|
18
|
+
dependencies = [
|
|
19
|
+
"amoskeag-lexer",
|
|
20
|
+
"amoskeag-parser",
|
|
21
|
+
"amoskeag-stdlib-functions",
|
|
22
|
+
"amoskeag-stdlib-operators",
|
|
23
|
+
"anyhow",
|
|
24
|
+
"thiserror",
|
|
25
|
+
]
|
|
26
|
+
|
|
27
|
+
[[package]]
|
|
28
|
+
name = "amoskeag-lexer"
|
|
29
|
+
version = "0.1.0"
|
|
30
|
+
source = "git+https://github.com/durable-oss/amoskeag#0099868980265f214d6fe1048eb87a8aa7593af3"
|
|
31
|
+
dependencies = [
|
|
32
|
+
"thiserror",
|
|
33
|
+
]
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "amoskeag-parser"
|
|
37
|
+
version = "0.1.0"
|
|
38
|
+
source = "git+https://github.com/durable-oss/amoskeag#0099868980265f214d6fe1048eb87a8aa7593af3"
|
|
39
|
+
dependencies = [
|
|
40
|
+
"amoskeag-lexer",
|
|
41
|
+
"nom",
|
|
42
|
+
"thiserror",
|
|
43
|
+
]
|
|
44
|
+
|
|
45
|
+
[[package]]
|
|
46
|
+
name = "amoskeag-stdlib-functions"
|
|
47
|
+
version = "0.1.0"
|
|
48
|
+
source = "git+https://github.com/durable-oss/amoskeag#0099868980265f214d6fe1048eb87a8aa7593af3"
|
|
49
|
+
dependencies = [
|
|
50
|
+
"amoskeag-stdlib-operators",
|
|
51
|
+
"inventory",
|
|
52
|
+
]
|
|
53
|
+
|
|
54
|
+
[[package]]
|
|
55
|
+
name = "amoskeag-stdlib-operators"
|
|
56
|
+
version = "0.1.0"
|
|
57
|
+
source = "git+https://github.com/durable-oss/amoskeag#0099868980265f214d6fe1048eb87a8aa7593af3"
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "amoskeag_native"
|
|
61
|
+
version = "0.1.0"
|
|
62
|
+
dependencies = [
|
|
63
|
+
"amoskeag",
|
|
64
|
+
"amoskeag-stdlib-operators",
|
|
65
|
+
"magnus",
|
|
66
|
+
"serde_json",
|
|
67
|
+
]
|
|
68
|
+
|
|
69
|
+
[[package]]
|
|
70
|
+
name = "anyhow"
|
|
71
|
+
version = "1.0.100"
|
|
72
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
73
|
+
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
|
|
74
|
+
|
|
75
|
+
[[package]]
|
|
76
|
+
name = "bindgen"
|
|
77
|
+
version = "0.69.5"
|
|
78
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
79
|
+
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
|
|
80
|
+
dependencies = [
|
|
81
|
+
"bitflags",
|
|
82
|
+
"cexpr",
|
|
83
|
+
"clang-sys",
|
|
84
|
+
"itertools",
|
|
85
|
+
"lazy_static",
|
|
86
|
+
"lazycell",
|
|
87
|
+
"proc-macro2",
|
|
88
|
+
"quote",
|
|
89
|
+
"regex",
|
|
90
|
+
"rustc-hash",
|
|
91
|
+
"shlex",
|
|
92
|
+
"syn",
|
|
93
|
+
]
|
|
94
|
+
|
|
95
|
+
[[package]]
|
|
96
|
+
name = "bitflags"
|
|
97
|
+
version = "2.10.0"
|
|
98
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
99
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
100
|
+
|
|
101
|
+
[[package]]
|
|
102
|
+
name = "cexpr"
|
|
103
|
+
version = "0.6.0"
|
|
104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
105
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
106
|
+
dependencies = [
|
|
107
|
+
"nom",
|
|
108
|
+
]
|
|
109
|
+
|
|
110
|
+
[[package]]
|
|
111
|
+
name = "cfg-if"
|
|
112
|
+
version = "1.0.4"
|
|
113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
114
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
115
|
+
|
|
116
|
+
[[package]]
|
|
117
|
+
name = "clang-sys"
|
|
118
|
+
version = "1.8.1"
|
|
119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
120
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
|
121
|
+
dependencies = [
|
|
122
|
+
"glob",
|
|
123
|
+
"libc",
|
|
124
|
+
"libloading",
|
|
125
|
+
]
|
|
126
|
+
|
|
127
|
+
[[package]]
|
|
128
|
+
name = "either"
|
|
129
|
+
version = "1.15.0"
|
|
130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
131
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
132
|
+
|
|
133
|
+
[[package]]
|
|
134
|
+
name = "glob"
|
|
135
|
+
version = "0.3.3"
|
|
136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
137
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
138
|
+
|
|
139
|
+
[[package]]
|
|
140
|
+
name = "inventory"
|
|
141
|
+
version = "0.3.21"
|
|
142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
143
|
+
checksum = "bc61209c082fbeb19919bee74b176221b27223e27b65d781eb91af24eb1fb46e"
|
|
144
|
+
dependencies = [
|
|
145
|
+
"rustversion",
|
|
146
|
+
]
|
|
147
|
+
|
|
148
|
+
[[package]]
|
|
149
|
+
name = "itertools"
|
|
150
|
+
version = "0.12.1"
|
|
151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
152
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
|
153
|
+
dependencies = [
|
|
154
|
+
"either",
|
|
155
|
+
]
|
|
156
|
+
|
|
157
|
+
[[package]]
|
|
158
|
+
name = "itoa"
|
|
159
|
+
version = "1.0.15"
|
|
160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
161
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
162
|
+
|
|
163
|
+
[[package]]
|
|
164
|
+
name = "lazy_static"
|
|
165
|
+
version = "1.5.0"
|
|
166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
167
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
168
|
+
|
|
169
|
+
[[package]]
|
|
170
|
+
name = "lazycell"
|
|
171
|
+
version = "1.3.0"
|
|
172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
173
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
174
|
+
|
|
175
|
+
[[package]]
|
|
176
|
+
name = "libc"
|
|
177
|
+
version = "0.2.177"
|
|
178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
179
|
+
checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
|
|
180
|
+
|
|
181
|
+
[[package]]
|
|
182
|
+
name = "libloading"
|
|
183
|
+
version = "0.8.9"
|
|
184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
185
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
186
|
+
dependencies = [
|
|
187
|
+
"cfg-if",
|
|
188
|
+
"windows-link",
|
|
189
|
+
]
|
|
190
|
+
|
|
191
|
+
[[package]]
|
|
192
|
+
name = "magnus"
|
|
193
|
+
version = "0.7.1"
|
|
194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
195
|
+
checksum = "3d87ae53030f3a22e83879e666cb94e58a7bdf31706878a0ba48752994146dab"
|
|
196
|
+
dependencies = [
|
|
197
|
+
"magnus-macros",
|
|
198
|
+
"rb-sys",
|
|
199
|
+
"rb-sys-env",
|
|
200
|
+
"seq-macro",
|
|
201
|
+
]
|
|
202
|
+
|
|
203
|
+
[[package]]
|
|
204
|
+
name = "magnus-macros"
|
|
205
|
+
version = "0.6.0"
|
|
206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
207
|
+
checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
|
208
|
+
dependencies = [
|
|
209
|
+
"proc-macro2",
|
|
210
|
+
"quote",
|
|
211
|
+
"syn",
|
|
212
|
+
]
|
|
213
|
+
|
|
214
|
+
[[package]]
|
|
215
|
+
name = "memchr"
|
|
216
|
+
version = "2.7.6"
|
|
217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
218
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
219
|
+
|
|
220
|
+
[[package]]
|
|
221
|
+
name = "minimal-lexical"
|
|
222
|
+
version = "0.2.1"
|
|
223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
224
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
225
|
+
|
|
226
|
+
[[package]]
|
|
227
|
+
name = "nom"
|
|
228
|
+
version = "7.1.3"
|
|
229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
230
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
231
|
+
dependencies = [
|
|
232
|
+
"memchr",
|
|
233
|
+
"minimal-lexical",
|
|
234
|
+
]
|
|
235
|
+
|
|
236
|
+
[[package]]
|
|
237
|
+
name = "proc-macro2"
|
|
238
|
+
version = "1.0.103"
|
|
239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
240
|
+
checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
|
|
241
|
+
dependencies = [
|
|
242
|
+
"unicode-ident",
|
|
243
|
+
]
|
|
244
|
+
|
|
245
|
+
[[package]]
|
|
246
|
+
name = "quote"
|
|
247
|
+
version = "1.0.42"
|
|
248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
249
|
+
checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
|
|
250
|
+
dependencies = [
|
|
251
|
+
"proc-macro2",
|
|
252
|
+
]
|
|
253
|
+
|
|
254
|
+
[[package]]
|
|
255
|
+
name = "rb-sys"
|
|
256
|
+
version = "0.9.117"
|
|
257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
258
|
+
checksum = "f900d1ce4629a2ebffaf5de74bd8f9c1188d4c5ed406df02f97e22f77a006f44"
|
|
259
|
+
dependencies = [
|
|
260
|
+
"rb-sys-build",
|
|
261
|
+
]
|
|
262
|
+
|
|
263
|
+
[[package]]
|
|
264
|
+
name = "rb-sys-build"
|
|
265
|
+
version = "0.9.117"
|
|
266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
267
|
+
checksum = "ef1e9c857028f631056bcd6d88cec390c751e343ce2223ddb26d23eb4a151d59"
|
|
268
|
+
dependencies = [
|
|
269
|
+
"bindgen",
|
|
270
|
+
"lazy_static",
|
|
271
|
+
"proc-macro2",
|
|
272
|
+
"quote",
|
|
273
|
+
"regex",
|
|
274
|
+
"shell-words",
|
|
275
|
+
"syn",
|
|
276
|
+
]
|
|
277
|
+
|
|
278
|
+
[[package]]
|
|
279
|
+
name = "rb-sys-env"
|
|
280
|
+
version = "0.1.2"
|
|
281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
282
|
+
checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
|
283
|
+
|
|
284
|
+
[[package]]
|
|
285
|
+
name = "regex"
|
|
286
|
+
version = "1.12.2"
|
|
287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
|
+
checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
|
|
289
|
+
dependencies = [
|
|
290
|
+
"aho-corasick",
|
|
291
|
+
"memchr",
|
|
292
|
+
"regex-automata",
|
|
293
|
+
"regex-syntax",
|
|
294
|
+
]
|
|
295
|
+
|
|
296
|
+
[[package]]
|
|
297
|
+
name = "regex-automata"
|
|
298
|
+
version = "0.4.13"
|
|
299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
300
|
+
checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
|
|
301
|
+
dependencies = [
|
|
302
|
+
"aho-corasick",
|
|
303
|
+
"memchr",
|
|
304
|
+
"regex-syntax",
|
|
305
|
+
]
|
|
306
|
+
|
|
307
|
+
[[package]]
|
|
308
|
+
name = "regex-syntax"
|
|
309
|
+
version = "0.8.8"
|
|
310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
311
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
312
|
+
|
|
313
|
+
[[package]]
|
|
314
|
+
name = "rustc-hash"
|
|
315
|
+
version = "1.1.0"
|
|
316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
317
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
318
|
+
|
|
319
|
+
[[package]]
|
|
320
|
+
name = "rustversion"
|
|
321
|
+
version = "1.0.22"
|
|
322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
323
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
324
|
+
|
|
325
|
+
[[package]]
|
|
326
|
+
name = "ryu"
|
|
327
|
+
version = "1.0.20"
|
|
328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
329
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
330
|
+
|
|
331
|
+
[[package]]
|
|
332
|
+
name = "seq-macro"
|
|
333
|
+
version = "0.3.6"
|
|
334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
335
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
336
|
+
|
|
337
|
+
[[package]]
|
|
338
|
+
name = "serde"
|
|
339
|
+
version = "1.0.228"
|
|
340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
341
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
342
|
+
dependencies = [
|
|
343
|
+
"serde_core",
|
|
344
|
+
]
|
|
345
|
+
|
|
346
|
+
[[package]]
|
|
347
|
+
name = "serde_core"
|
|
348
|
+
version = "1.0.228"
|
|
349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
350
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
351
|
+
dependencies = [
|
|
352
|
+
"serde_derive",
|
|
353
|
+
]
|
|
354
|
+
|
|
355
|
+
[[package]]
|
|
356
|
+
name = "serde_derive"
|
|
357
|
+
version = "1.0.228"
|
|
358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
359
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
360
|
+
dependencies = [
|
|
361
|
+
"proc-macro2",
|
|
362
|
+
"quote",
|
|
363
|
+
"syn",
|
|
364
|
+
]
|
|
365
|
+
|
|
366
|
+
[[package]]
|
|
367
|
+
name = "serde_json"
|
|
368
|
+
version = "1.0.145"
|
|
369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
370
|
+
checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
|
|
371
|
+
dependencies = [
|
|
372
|
+
"itoa",
|
|
373
|
+
"memchr",
|
|
374
|
+
"ryu",
|
|
375
|
+
"serde",
|
|
376
|
+
"serde_core",
|
|
377
|
+
]
|
|
378
|
+
|
|
379
|
+
[[package]]
|
|
380
|
+
name = "shell-words"
|
|
381
|
+
version = "1.1.0"
|
|
382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
383
|
+
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
|
384
|
+
|
|
385
|
+
[[package]]
|
|
386
|
+
name = "shlex"
|
|
387
|
+
version = "1.3.0"
|
|
388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
389
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
390
|
+
|
|
391
|
+
[[package]]
|
|
392
|
+
name = "syn"
|
|
393
|
+
version = "2.0.110"
|
|
394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
395
|
+
checksum = "a99801b5bd34ede4cf3fc688c5919368fea4e4814a4664359503e6015b280aea"
|
|
396
|
+
dependencies = [
|
|
397
|
+
"proc-macro2",
|
|
398
|
+
"quote",
|
|
399
|
+
"unicode-ident",
|
|
400
|
+
]
|
|
401
|
+
|
|
402
|
+
[[package]]
|
|
403
|
+
name = "thiserror"
|
|
404
|
+
version = "1.0.69"
|
|
405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
406
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
407
|
+
dependencies = [
|
|
408
|
+
"thiserror-impl",
|
|
409
|
+
]
|
|
410
|
+
|
|
411
|
+
[[package]]
|
|
412
|
+
name = "thiserror-impl"
|
|
413
|
+
version = "1.0.69"
|
|
414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
415
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
416
|
+
dependencies = [
|
|
417
|
+
"proc-macro2",
|
|
418
|
+
"quote",
|
|
419
|
+
"syn",
|
|
420
|
+
]
|
|
421
|
+
|
|
422
|
+
[[package]]
|
|
423
|
+
name = "unicode-ident"
|
|
424
|
+
version = "1.0.22"
|
|
425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
426
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
427
|
+
|
|
428
|
+
[[package]]
|
|
429
|
+
name = "windows-link"
|
|
430
|
+
version = "0.2.1"
|
|
431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
432
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
[package]
|
|
2
|
+
name = "amoskeag_native"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
edition = "2021"
|
|
5
|
+
|
|
6
|
+
# Exclude from parent workspace
|
|
7
|
+
[workspace]
|
|
8
|
+
|
|
9
|
+
[lib]
|
|
10
|
+
name = "amoskeag_native"
|
|
11
|
+
crate-type = ["cdylib"]
|
|
12
|
+
|
|
13
|
+
[dependencies]
|
|
14
|
+
amoskeag = { git = "https://github.com/durable-oss/amoskeag" }
|
|
15
|
+
amoskeag-stdlib-operators = { git = "https://github.com/durable-oss/amoskeag" }
|
|
16
|
+
serde_json = "1.0"
|
|
17
|
+
magnus = "0.7"
|
|
18
|
+
|
|
19
|
+
[profile.release]
|
|
20
|
+
lto = true
|
|
21
|
+
opt-level = 3
|
|
22
|
+
codegen-units = 1
|