[package]
edition = "2024"
rust-version = "1.94"
name = "toasty-sql"
version = "0.2.0"
authors = ["Carl Lerche <me@carllerche.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SQL serialization layer for Toasty database drivers"
homepage = "https://github.com/tokio-rs/toasty"
documentation = "https://docs.rs/toasty-sql"
readme = "README.md"
keywords = [
"orm",
"database",
"sql",
"nosql",
"async",
]
categories = ["database"]
license = "MIT"
repository = "https://github.com/tokio-rs/toasty"
resolver = "2"
[lib]
name = "toasty_sql"
path = "src/lib.rs"
[[test]]
name = "migration_add_column"
path = "tests/migration_add_column.rs"
[[test]]
name = "migration_alter_column"
path = "tests/migration_alter_column.rs"
[[test]]
name = "migration_alter_table"
path = "tests/migration_alter_table.rs"
[[test]]
name = "migration_create_table"
path = "tests/migration_create_table.rs"
[[test]]
name = "migration_drop_column"
path = "tests/migration_drop_column.rs"
[[test]]
name = "migration_drop_table"
path = "tests/migration_drop_table.rs"
[dependencies.toasty-core]
version = "0.2.0"
[lints.rust]
unsafe_code = "deny"