[package]
edition = "2021"
rust-version = "1.95"
name = "fathomdb-schema"
version = "0.8.22"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "FathomDB schema — versioned migration registry and bootstrap (leaf crate)."
readme = "README.md"
keywords = [
"sqlite",
"migrations",
"schema",
"database",
"embedded",
]
license = "MIT"
repository = "https://github.com/coreyt/fathomdb"
[lib]
name = "fathomdb_schema"
path = "src/lib.rs"
[[test]]
name = "migrations"
path = "tests/migrations.rs"
[[test]]
name = "property_template"
path = "tests/property_template.rs"
[[test]]
name = "slice25_logical_id_pin"
path = "tests/slice25_logical_id_pin.rs"
[[test]]
name = "step14_migration"
path = "tests/step14_migration.rs"
[[test]]
name = "step15_to_17_migration"
path = "tests/step15_to_17_migration.rs"
[[test]]
name = "step16_migration"
path = "tests/step16_migration.rs"
[[test]]
name = "step17_migration"
path = "tests/step17_migration.rs"
[[test]]
name = "step18_migration"
path = "tests/step18_migration.rs"
[[test]]
name = "step19_migration"
path = "tests/step19_migration.rs"
[[test]]
name = "step20_migration"
path = "tests/step20_migration.rs"
[[test]]
name = "step21_migration"
path = "tests/step21_migration.rs"
[[test]]
name = "step22_migration"
path = "tests/step22_migration.rs"
[[test]]
name = "step24_migration"
path = "tests/step24_migration.rs"
[[test]]
name = "step25_nested_projection_source"
path = "tests/step25_nested_projection_source.rs"
[[test]]
name = "step26_join_indexes"
path = "tests/step26_join_indexes.rs"
[[test]]
name = "tc33_fix4_projection_cursor_stall"
path = "tests/tc33_fix4_projection_cursor_stall.rs"
[[test]]
name = "tc33_fix6_edge_vector_sidecar"
path = "tests/tc33_fix6_edge_vector_sidecar.rs"
[[test]]
name = "wire_constants"
path = "tests/wire_constants.rs"
[dependencies.rusqlite]
version = "0.40"
features = [
"bundled",
"fallible_uint",
]
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.sha2]
version = "0.11"
[dev-dependencies.sqlite-vec]
version = "=0.1.9"