File tree Expand file tree Collapse file tree 17 files changed +18
-17
lines changed Expand file tree Collapse file tree 17 files changed +18
-17
lines changed Original file line number Diff line number Diff line change 27
27
| [ Cloudflare D1] ( ./wasm-wrappers/fdw/cfd1_fdw ) | A Wasm FDW for [ Cloudflare D1] ( https://developers.cloudflare.com/d1/ ) | ✅ | ✅ |
28
28
| [ Orb] ( ./wasm-wrappers/fdw/orb_fdw ) | A Wasm FDW for [ Orb] ( https://www.withorb.com/ ) | ✅ | ❌ |
29
29
| [ HubSpot] ( ./wasm-wrappers/fdw/hubspot_fdw ) | A Wasm FDW for [ HubSpot] ( https://www.hubspot.com/ ) | ✅ | ❌ |
30
+ | [ Slack] ( ./wasm-wrappers/fdw/slack_fdw ) | A Wasm FDW for [ Slack] ( https://www.slack.com/ ) | ✅ | ❌ |
30
31
31
32
### Warning
32
33
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " supabase-wrappers"
3
- version = " 0.1.21 "
3
+ version = " 0.1.22 "
4
4
edition = " 2021"
5
5
authors = [" Supabase Inc. https://supabase.com/" ]
6
6
license = " Apache-2.0"
Original file line number Diff line number Diff line change @@ -191,7 +191,7 @@ impl CalFdw {
191
191
impl Guest for CalFdw {
192
192
fn host_version_requirement ( ) -> String {
193
193
// semver ref: https://docs.rs/semver/latest/semver/enum.Op.html
194
- "^0.2 .0" . to_string ( )
194
+ "^0.1 .0" . to_string ( )
195
195
}
196
196
197
197
fn init ( ctx : & Context ) -> FdwResult {
Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ impl CalendlyFdw {
190
190
impl Guest for CalendlyFdw {
191
191
fn host_version_requirement ( ) -> String {
192
192
// semver ref: https://docs.rs/semver/latest/semver/enum.Op.html
193
- "^0.2 .0" . to_string ( )
193
+ "^0.1 .0" . to_string ( )
194
194
}
195
195
196
196
fn init ( ctx : & Context ) -> FdwResult {
Original file line number Diff line number Diff line change @@ -284,7 +284,7 @@ impl Cfd1Fdw {
284
284
impl Guest for Cfd1Fdw {
285
285
fn host_version_requirement ( ) -> String {
286
286
// semver ref: https://docs.rs/semver/latest/semver/enum.Op.html
287
- "^0.2 .0" . to_string ( )
287
+ "^0.1 .0" . to_string ( )
288
288
}
289
289
290
290
fn init ( ctx : & Context ) -> FdwResult {
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ impl ClerkFdw {
172
172
impl Guest for ClerkFdw {
173
173
fn host_version_requirement ( ) -> String {
174
174
// semver ref: https://docs.rs/semver/latest/semver/enum.Op.html
175
- "^0.2 .0" . to_string ( )
175
+ "^0.1 .0" . to_string ( )
176
176
}
177
177
178
178
fn init ( ctx : & Context ) -> FdwResult {
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ impl HelloWorldFdw {
30
30
impl Guest for HelloWorldFdw {
31
31
fn host_version_requirement ( ) -> String {
32
32
// semver ref: https://docs.rs/semver/latest/semver/enum.Op.html
33
- "^0.2 .0" . to_string ( )
33
+ "^0.1 .0" . to_string ( )
34
34
}
35
35
36
36
fn init ( _ctx : & Context ) -> FdwResult {
Original file line number Diff line number Diff line change @@ -212,7 +212,7 @@ impl HubspotFdw {
212
212
impl Guest for HubspotFdw {
213
213
fn host_version_requirement ( ) -> String {
214
214
// semver ref: https://docs.rs/semver/latest/semver/enum.Op.html
215
- "^0.2 .0" . to_string ( )
215
+ "^0.1 .0" . to_string ( )
216
216
}
217
217
218
218
fn init ( ctx : & Context ) -> FdwResult {
Original file line number Diff line number Diff line change @@ -399,7 +399,7 @@ impl NotionFdw {
399
399
impl Guest for NotionFdw {
400
400
fn host_version_requirement ( ) -> String {
401
401
// semver ref: https://docs.rs/semver/latest/semver/enum.Op.html
402
- "^0.2 .0" . to_string ( )
402
+ "^0.1 .0" . to_string ( )
403
403
}
404
404
405
405
fn init ( ctx : & Context ) -> FdwResult {
You can’t perform that action at this time.
0 commit comments