From c4282fb0363d69ad6184fb1c3f03d39884350304 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BC=8A=E6=AC=A7?= Date: Fri, 30 Aug 2024 10:52:46 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=8C=20Merged=20patch=20PR.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Cargo.toml | 1 - examples/guest-side/Cargo.toml | 2 +- examples/host-side/Cargo.toml | 2 +- packages/database/Cargo.toml | 2 +- packages/database_driver_cloudflare/Cargo.toml | 2 +- packages/database_driver_native/Cargo.toml | 2 +- packages/database_driver_wasi/Cargo.toml | 2 +- packages/database_types/Cargo.toml | 2 +- packages/utils/Cargo.toml | 2 +- packages/vm/Cargo.toml | 2 +- 10 files changed, 9 insertions(+), 10 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 7e05792..cf321b8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,4 +12,3 @@ panic = "abort" yew = { git = "https://github.com/langyo/yew", branch = "wasi-support-test" } yew-router = { git = "https://github.com/langyo/yew", branch = "wasi-support-test" } stylist = { git = "https://github.com/langyo/stylist-rs", branch = "wasi-support" } -sea-orm = { git = "https://github.com/langyo/sea-orm", branch = "async-proxy-conn" } diff --git a/examples/guest-side/Cargo.toml b/examples/guest-side/Cargo.toml index 4e4891d..99b5165 100644 --- a/examples/guest-side/Cargo.toml +++ b/examples/guest-side/Cargo.toml @@ -16,7 +16,7 @@ tokio = { version = "^1", features = ["macros", "rt", "time"] } async-trait = "^0.1" sqlparser = "^0.45" -sea-orm = { version = "1.1.0-rc.1", features = ["proxy"] } +sea-orm = { version = "^1", features = ["proxy"] } yew = { version = "^0.21", features = ["ssr"] } yew-router = "^0.18" diff --git a/examples/host-side/Cargo.toml b/examples/host-side/Cargo.toml index 99f68b5..0e3349b 100644 --- a/examples/host-side/Cargo.toml +++ b/examples/host-side/Cargo.toml @@ -17,5 +17,5 @@ serde_json = "^1" async-std = { version = "^1", features = ["attributes", "tokio1"] } uuid = "^1" -sea-orm = { version = "1.1.0-rc.1", features = ["proxy"] } +sea-orm = { version = "^1", features = ["proxy"] } gluesql = { version = "^0.15" } diff --git a/packages/database/Cargo.toml b/packages/database/Cargo.toml index 824ae5f..b552641 100644 --- a/packages/database/Cargo.toml +++ b/packages/database/Cargo.toml @@ -30,7 +30,7 @@ bytes = "^1" async-trait = "^0.1" cfg-if = "^1" -sea-orm = "1.1.0-rc.1" +sea-orm = "^1" worker = "^0.3" # [target.'cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), not(target_os = "wasi")))'.dependencies] diff --git a/packages/database_driver_cloudflare/Cargo.toml b/packages/database_driver_cloudflare/Cargo.toml index e81ade1..4c5cffe 100644 --- a/packages/database_driver_cloudflare/Cargo.toml +++ b/packages/database_driver_cloudflare/Cargo.toml @@ -30,7 +30,7 @@ bytes = "^1" async-trait = "^0.1" oneshot = "^0.1" -sea-orm = { version = "1.1.0-rc.1", features = ["proxy"] } +sea-orm = { version = "^1", features = ["proxy"] } sqlparser = { version = "^0.48", optional = true } wasm-bindgen = { version = "0.2.87" } diff --git a/packages/database_driver_native/Cargo.toml b/packages/database_driver_native/Cargo.toml index 8efb444..d23e4f1 100644 --- a/packages/database_driver_native/Cargo.toml +++ b/packages/database_driver_native/Cargo.toml @@ -30,7 +30,7 @@ bytes = "^1" async-trait = "^0.1" oneshot = "^0.1" -sea-orm = { version = "1.1.0-rc.1", features = [ +sea-orm = { version = "^1", features = [ "sqlx-sqlite", "runtime-async-std-rustls", ] } diff --git a/packages/database_driver_wasi/Cargo.toml b/packages/database_driver_wasi/Cargo.toml index aa6467c..9c19996 100644 --- a/packages/database_driver_wasi/Cargo.toml +++ b/packages/database_driver_wasi/Cargo.toml @@ -34,5 +34,5 @@ oneshot = "^0.1" wasi = { version = "0.13.1" } tokio = { version = "^1", features = ["macros", "rt", "time"] } -sea-orm = { version = "1.1.0-rc.1", features = ["proxy"] } +sea-orm = { version = "^1", features = ["proxy"] } sqlparser = { version = "^0.48" } diff --git a/packages/database_types/Cargo.toml b/packages/database_types/Cargo.toml index 7d23f6e..174448f 100644 --- a/packages/database_types/Cargo.toml +++ b/packages/database_types/Cargo.toml @@ -27,4 +27,4 @@ uuid = { version = "^1", features = [ bytes = "^1" async-trait = "^0.1" -sea-orm = "1.1.0-rc.1" +sea-orm = "^1" diff --git a/packages/utils/Cargo.toml b/packages/utils/Cargo.toml index 97d7dc6..0ef6b52 100644 --- a/packages/utils/Cargo.toml +++ b/packages/utils/Cargo.toml @@ -28,4 +28,4 @@ uuid = { version = "^1", features = [ ] } bcrypt = "^0.15" -sea-orm = { version = "1.1.0-rc.1", features = ["proxy"] } +sea-orm = { version = "^1", features = ["proxy"] } diff --git a/packages/vm/Cargo.toml b/packages/vm/Cargo.toml index 62e8f23..a8a3c62 100644 --- a/packages/vm/Cargo.toml +++ b/packages/vm/Cargo.toml @@ -23,7 +23,7 @@ uuid = "^1" wit-component = "*" wasmtime = { version = "^23", features = ["component-model", "async"] } wasmtime-wasi = "^23" -sea-orm = { version = "1.1.0-rc.1", features = ["proxy"] } +sea-orm = { version = "^1", features = ["proxy"] } gluesql = { version = "^0.15" } cap-std = "^3"