Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 16 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ keywords = ["async", "orm", "mysql", "postgres", "sqlite"]
license = "MIT OR Apache-2.0"
name = "sea-orm"
repository = "https://github.com/SeaQL/sea-orm"
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "2.0.0-rc.38"

[package.metadata.docs.rs]
Expand Down Expand Up @@ -78,7 +78,7 @@ sea-schema = { version = "0.17.0-rc.15", default-features = false, features = [
], optional = true }
serde = { version = "1.0", default-features = false }
serde_json = { version = "1.0", default-features = false, optional = true }
sqlx = { version = "0.8.4", default-features = false, optional = true }
sqlx = { version = "0.9.0", default-features = false, optional = true }
strum = { version = "0.28", default-features = false }
thiserror = { version = "2", default-features = false }
time = { version = "0.3.36", default-features = false, optional = true }
Expand Down Expand Up @@ -138,17 +138,21 @@ postgres-vector = [
proxy = ["serde/derive"]
rbac = ["sea-query/audit", "macros"]
runtime-async-std = ["sqlx?/runtime-async-std"]
runtime-async-std-native-tls = [
"sqlx?/runtime-async-std-native-tls",
"runtime-async-std",
]
runtime-async-std-rustls = [
"sqlx?/runtime-async-std-rustls",
"runtime-async-std",
]
runtime-tokio = ["sqlx?/runtime-tokio"]
runtime-tokio-native-tls = ["sqlx?/runtime-tokio-native-tls", "runtime-tokio"]
runtime-tokio-rustls = ["sqlx?/runtime-tokio-rustls", "runtime-tokio"]
tls-none = ["sqlx?/tls-none"]
tls-native-tls = ["sqlx?/tls-native-tls"]
tls-rustls = ["sqlx?/tls-rustls"]
tls-rustls-aws-lc-rs = ["sqlx?/tls-rustls-aws-lc-rs"]
tls-rustls-ring = ["sqlx?/tls-rustls-ring"]
tls-rustls-ring-native-roots = ["sqlx?/tls-rustls-ring-native-roots"]
tls-rustls-ring-webpki = ["sqlx?/tls-rustls-ring-webpki"]

# TODO: Remove those as a breaking change.
runtime-async-std-native-tls = ["runtime-async-std", "tls-native-tls"]
runtime-async-std-rustls = ["runtime-async-std", "tls-rustls"]
runtime-tokio-native-tls = ["runtime-tokio", "tls-native-tls"]
runtime-tokio-rustls = ["runtime-tokio", "tls-rustls"]

rusqlite = []
schema-sync = ["sea-schema"]
sea-orm-internal = []
Expand Down
2 changes: 1 addition & 1 deletion examples/actix_example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ authors = ["Sam Samai <sam@studio2pi.com.au>"]
edition = "2024"
name = "sea-orm-actix-4-beta-example"
publish = false
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

[workspace]
Expand Down
2 changes: 1 addition & 1 deletion examples/actix_example/api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ authors = ["Sam Samai <sam@studio2pi.com.au>"]
edition = "2024"
name = "actix-example-api"
publish = false
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion examples/actix_example/entity/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
edition = "2024"
name = "entity"
publish = false
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion examples/actix_example/migration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
edition = "2024"
name = "migration"
publish = false
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion examples/axum_example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ authors = ["Yoshiera Huang <huangjasper@126.com>"]
edition = "2024"
name = "sea-orm-axum-example"
publish = false
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

[workspace]
Expand Down
2 changes: 1 addition & 1 deletion examples/axum_example/api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ authors = ["Yoshiera Huang <huangjasper@126.com>"]
edition = "2024"
name = "axum-example-api"
publish = false
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion examples/axum_example/entity/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
edition = "2024"
name = "entity"
publish = false
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion examples/axum_example/migration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
edition = "2024"
name = "migration"
publish = false
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion examples/basic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
edition = "2024"
name = "sea-orm-example-basic"
publish = false
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion examples/graphql_example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ authors = ["Aaron Leopold <aaronleopold1221@gmail.com>"]
edition = "2024"
name = "sea-orm-graphql-example"
publish = false
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion examples/graphql_example/api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ authors = ["Aaron Leopold <aaronleopold1221@gmail.com>"]
edition = "2024"
name = "graphql-example-api"
publish = false
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion examples/graphql_example/entity/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
edition = "2024"
name = "entity"
publish = false
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion examples/graphql_example/migration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
edition = "2024"
name = "migration"
publish = false
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion examples/jsonrpsee_example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
edition = "2024"
name = "sea-orm-jsonrpsee-example"
publish = false
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion examples/jsonrpsee_example/api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
edition = "2024"
name = "jsonrpsee-example-api"
publish = false
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion examples/jsonrpsee_example/entity/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
edition = "2024"
name = "entity"
publish = false
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion examples/jsonrpsee_example/migration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
edition = "2024"
name = "migration"
publish = false
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion examples/loco_example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[package]
edition = "2024"
name = "todolist"
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion examples/loco_example/migration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
edition = "2024"
name = "migration"
publish = false
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion examples/loco_seaography/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[package]
edition = "2024"
name = "loco_seaography"
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion examples/loco_seaography/migration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
edition = "2024"
name = "migration"
publish = false
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion examples/loco_starter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[package]
edition = "2024"
name = "loco_starter"
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion examples/loco_starter/migration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
edition = "2024"
name = "migration"
publish = false
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion examples/parquet_example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
edition = "2024"
name = "sea-orm-parquet-example"
publish = false
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion examples/poem_example/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2024"
name = "sea-orm-poem-example"
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion examples/poem_example/api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2024"
name = "poem-example-api"
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion examples/poem_example/entity/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
edition = "2024"
name = "entity"
publish = false
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion examples/poem_example/migration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
edition = "2024"
name = "migration"
publish = false
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion examples/proxy_cloudflare_worker_example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ authors = ["bjn7 <https://github.com/bjn7>", "Langyo <langyo.china@gmail.co
edition = "2024"
name = "sea-orm-proxy-cloudflare-worker-example"
publish = false
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

[workspace]
Expand Down
2 changes: 1 addition & 1 deletion examples/proxy_gluesql_example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ authors = ["Langyo <langyo.china@gmail.com>"]
edition = "2024"
name = "sea-orm-proxy-gluesql-example"
publish = false
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

[workspace]
Expand Down
2 changes: 1 addition & 1 deletion examples/quickstart/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
edition = "2024"
name = "sea-orm-quickstart"
publish = false
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion examples/react_admin/backend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[package]
edition = "2024"
name = "loco_seaography"
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion examples/react_admin/backend/migration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
edition = "2024"
name = "migration"
publish = false
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion examples/rocket_example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ authors = ["Sam Samai <sam@studio2pi.com.au>"]
edition = "2024"
name = "sea-orm-rocket-example"
publish = false
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

[workspace]
Expand Down
2 changes: 1 addition & 1 deletion examples/rocket_example/api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ authors = ["Sam Samai <sam@studio2pi.com.au>"]
edition = "2024"
name = "rocket-example-api"
publish = false
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion examples/rocket_example/entity/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
edition = "2024"
name = "entity"
publish = false
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion examples/rocket_example/migration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
edition = "2024"
name = "migration"
publish = false
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion examples/rocket_okapi_example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = [
edition = "2024"
name = "sea-orm-rocket-okapi-example"
publish = false
rust-version = "1.85.0"
rust-version = "1.94.0"
version = "0.1.0"

[workspace]
Expand Down
Loading