ic-sql-migrate 0.0.5

A lightweight database migration library for Internet Computer (ICP) canisters with SQLite and Turso support.
Documentation
[package]
name = "ic-sql-migrate"
version = "0.0.5"
edition = "2021"
description = "A lightweight database migration library for Internet Computer (ICP) canisters with SQLite and Turso support."
authors = ["Kristofer Lund"]
license = "MIT"
repository = "https://github.com/kristoferlund/ic-sql-migrate"
homepage = "https://github.com/kristoferlund/ic-sql-migrate"
keywords = ["sqlite", "migration", "icp", "internet-computer", "database"]
categories = ["database", "development-tools"]

[dependencies]
thiserror = "2.0.16"
rusqlite = { version = "0.37.0", optional = true }
tokio = { version = "1.47.1", optional = true }
turso = { version = "0.1.4", optional = true }
futures-util = { version = "0.3", optional = true }

[features]
default = []
sqlite = ["rusqlite"]
turso = ["dep:turso", "tokio", "futures-util"]

[dev-dependencies]
tokio = { version = "1.47.1", features = ["full"] }