spikard 0.17.0.pre.rc.10 → 0.17.0
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/README.md +13 -2
- data/ext/spikard_rb/native/Cargo.lock +509 -338
- data/ext/spikard_rb/native/Cargo.toml +23 -7
- data/ext/spikard_rb/native/extconf.rb +5 -0
- data/ext/spikard_rb/src/lib.rs +4934 -2843
- data/ext/spikard_rb/src/service.rs +8 -6
- data/lib/spikard/app.rb +92 -21
- data/lib/spikard/errors.rb +5 -0
- data/lib/spikard/introspection.rb +5 -0
- data/lib/spikard/native.rb +2 -2
- data/lib/spikard/params.rb +5 -0
- data/lib/spikard/service.rb +5 -0
- data/lib/spikard/service_http_additions.rb +5 -0
- data/lib/spikard/version.rb +3 -3
- data/lib/spikard.rb +4 -11
- data/sig/types.rbs +334 -288
- metadata +8 -8
- data/lib/spikard_rb.so +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2ecbce9d6be3646733c33c7c3f9171e4c7ab4a3e781eda97e500535c70d0c920
|
|
4
|
+
data.tar.gz: 83ccd27c8a0c57759ddec633957a53553d452dc640fd02f712c4b1c517b6cbe8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0a4ed08125d9356674350e8e9ef89cae74a7a8352a62c6844255f44e37d301f44f870a4cf6537a8ea97aa338b681423506cc35edcf0cab15f9fbe76f4e44531c
|
|
7
|
+
data.tar.gz: ea83209b2c282ee1f94c952c009e1a9455af9da9d992d404c7e3d0c20e455a5cb2e57b7b1ac513c6dbd0eba65c206de146e18645e09ba1a2a5aba5181ed9e73d
|
data/README.md
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
<!-- This file is auto-generated by alef — DO NOT EDIT. -->
|
|
2
|
+
<!-- alef:hash:3d9dda9900e5ba7815698f4c741707b14cda269160a4c173942152f585fbe700 -->
|
|
3
|
+
<!-- To regenerate: alef readme -->
|
|
4
|
+
<!-- To verify freshness: alef verify -->
|
|
5
|
+
|
|
1
6
|
<!-- markdownlint-disable MD033 MD041 -->
|
|
2
7
|
<div align="center">
|
|
3
8
|
|
|
@@ -5,7 +10,7 @@
|
|
|
5
10
|
|
|
6
11
|
**Spikard** — Part of the spikard polyglot web toolkit.
|
|
7
12
|
|
|
8
|
-
|
|
13
|
+
Codegen-first polyglot web toolkit on a Rust core: OpenAPI/AsyncAPI/GraphQL/JSON-RPC/gRPC codegen, SQL-to-HTTP, tower-http middleware, and an MCP server. Experimental, pre-1.0. Ruby bindings via Magnus with idiomatic Ruby API.
|
|
9
14
|
|
|
10
15
|
<div align="center" style="display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 20px 0;">
|
|
11
16
|
<!-- Built with alef -->
|
|
@@ -69,12 +74,18 @@ Rust-centric polyglot HTTP framework with OpenAPI/AsyncAPI/GraphQL/JSON-RPC code
|
|
|
69
74
|
</a>
|
|
70
75
|
</div>
|
|
71
76
|
|
|
72
|
-
[Install](#installation) · [Quick example](#quick-example) · [Features](#features) · [Docs](https://
|
|
77
|
+
[Install](#installation) · [Quick example](#quick-example) · [Features](#features) · [Docs](https://spikard.dev)
|
|
73
78
|
|
|
74
79
|
</div>
|
|
75
80
|
|
|
76
81
|
---
|
|
77
82
|
|
|
83
|
+
> [!IMPORTANT]
|
|
84
|
+
> **spikard is experimental and pre-1.0.** APIs change between releases and not every binding is at the
|
|
85
|
+
> same level of maturity, so it is not yet recommended for production. Feedback is genuinely wanted at
|
|
86
|
+
> this stage — [open an issue](https://github.com/Goldziher/spikard/issues) if something is wrong,
|
|
87
|
+
> awkward, or missing.
|
|
88
|
+
|
|
78
89
|
## What this package provides
|
|
79
90
|
|
|
80
91
|
- **Magnus-backed native extension** — Ruby 3.2+ with native performance for routing and validation
|