[package] name = "asyncmigrate" version = "0.2.0" authors = ["OKAMURA, Yasunobu "] edition = "2018" readme = "README.md" description = "database migration with async support" repository = "https://github.com/informationsea/asyncmigrate-rs" homepage = "https://github.com/informationsea/asyncmigrate-rs" keywords = ["database", "migration", "postgresql"] categories = ["database"] license = "Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] default = ["async-postgres"] async-postgres = ["tokio-postgres"] async-mysql = ["mysql_async"] [dependencies] tokio = { version = "1.19", features = ["io-util", "macros", "rt"] } tokio-postgres = { version = "0.7", optional = true } mysql_async = { version = "0.30", optional = true } # rusqlite = "0.23" rust-embed = "6" # mysql = "18" regex = "1" lazy_static = "1" thiserror = "1" async-trait = "0.1" [dev-dependencies] tokio = { version = "1.19", features = ["full"] }