Skip to content

Commit

Permalink
📌 Merged patch PR.
Browse files Browse the repository at this point in the history
  • Loading branch information
langyo committed Aug 30, 2024
1 parent 26edd1e commit c4282fb
Show file tree
Hide file tree
Showing 10 changed files with 9 additions and 10 deletions.
1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
2 changes: 1 addition & 1 deletion examples/guest-side/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion examples/host-side/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
2 changes: 1 addition & 1 deletion packages/database/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion packages/database_driver_cloudflare/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
2 changes: 1 addition & 1 deletion packages/database_driver_native/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
] }
Expand Down
2 changes: 1 addition & 1 deletion packages/database_driver_wasi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
2 changes: 1 addition & 1 deletion packages/database_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ uuid = { version = "^1", features = [
bytes = "^1"

async-trait = "^0.1"
sea-orm = "1.1.0-rc.1"
sea-orm = "^1"
2 changes: 1 addition & 1 deletion packages/utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
2 changes: 1 addition & 1 deletion packages/vm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit c4282fb

Please sign in to comment.