sea-orm-migration 2.0.0-rc.21

Migration utility for SeaORM
Documentation
[dependencies.async-trait]
default-features = false
version = "0.1"

[dependencies.clap]
features = ["env", "derive"]
optional = true
version = "4.3"

[dependencies.dotenvy]
default-features = false
optional = true
version = "0.15"

[dependencies.sea-orm]
features = ["schema-sync"]
version = "~2.0.0-rc.21"

[dependencies.sea-orm-cli]
default-features = false
optional = true
version = "~2.0.0-rc.21"

[dependencies.sea-schema]
default-features = false
features = ["discovery", "writer", "probe"]
version = "0.17.0-rc"

[dependencies.tracing]
default-features = false
features = ["log"]
version = "0.1"

[dependencies.tracing-subscriber]
default-features = false
features = ["env-filter", "fmt"]
version = "0.3.17"

[dev-dependencies.async-std]
features = ["attributes", "tokio1"]
version = "1"

[features]
cli = ["clap", "dotenvy", "sea-orm-cli/cli"]
default = ["cli"]
entity-registry = ["sea-orm/entity-registry"]
runtime-async-std = ["sea-orm/runtime-async-std", "sea-schema/runtime-async-std", "sea-orm-cli?/runtime-async-std"]
runtime-async-std-native-tls = ["sea-orm/runtime-async-std-native-tls", "sea-schema/runtime-async-std-native-tls", "sea-orm-cli?/runtime-async-std-native-tls"]
runtime-async-std-rustls = ["sea-orm/runtime-async-std-rustls", "sea-schema/runtime-async-std-rustls", "sea-orm-cli?/runtime-async-std-rustls"]
runtime-tokio = ["sea-orm/runtime-tokio", "sea-schema/runtime-tokio", "sea-orm-cli?/runtime-tokio"]
runtime-tokio-native-tls = ["sea-orm/runtime-tokio-native-tls", "sea-schema/runtime-tokio-native-tls", "sea-orm-cli?/runtime-tokio-native-tls"]
runtime-tokio-rustls = ["sea-orm/runtime-tokio-rustls", "sea-schema/runtime-tokio-rustls", "sea-orm-cli?/runtime-tokio-rustls"]
sqlite-use-returning-for-3_35 = ["sea-orm/sqlite-use-returning-for-3_35"]
sqlx-dep = []
sqlx-mysql = ["sqlx-dep", "sea-orm/sqlx-mysql", "sea-orm-cli?/sqlx-mysql"]
sqlx-postgres = ["sqlx-dep", "sea-orm/sqlx-postgres", "sea-orm-cli?/sqlx-postgres"]
sqlx-sqlite = ["sqlx-dep", "sea-orm/sqlx-sqlite", "sea-orm-cli?/sqlx-sqlite"]
with-bigdecimal = ["sea-orm/with-bigdecimal"]
with-chrono = ["sea-orm/with-chrono"]
with-ipnetwork = ["sea-orm/with-ipnetwork"]
with-json = ["sea-orm/with-json"]
with-rust_decimal = ["sea-orm/with-rust_decimal"]
with-time = ["sea-orm/with-time"]
with-uuid = ["sea-orm/with-uuid"]

[lib]
name = "sea_orm_migration"
path = "src/lib.rs"

[package]
authors = ["Billy Chan <ccw.billy.123@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["database"]
description = "Migration utility for SeaORM"
documentation = "https://docs.rs/sea-orm"
edition = "2024"
homepage = "https://www.sea-ql.org/SeaORM"
keywords = ["async", "orm", "mysql", "postgres", "sqlite"]
license = "MIT OR Apache-2.0"
name = "sea-orm-migration"
readme = "README.md"
repository = "https://github.com/SeaQL/sea-orm"
rust-version = "1.85.0"
version = "2.0.0-rc.21"

[[test]]
name = "main"
path = "tests/main.rs"

[[test]]
name = "postgres"
path = "tests/postgres.rs"