[package] name = "db-sqlx-sqlite" version = "0.1.0" edition = "2021" homepage = "https://github.com/realaravinth/gitpad" repository = "https://github.com/realaravinth/gitpad" documentation = "https://github.con/realaravinth/gitpad" readme = "https://github.com/realaravinth/gitpad/blob/master/README.md" license = "AGPLv3 or later version" authors = ["realaravinth "] include = ["./mgrations/"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] sqlx = { version = "0.5.10", features = [ "sqlite", "time", "offline", "runtime-actix-rustls" ] } db-core = {path = "../db-core"} async-trait = "0.1.51" [dev-dependencies] actix-rt = "2" sqlx = { version = "0.5.10", features = [ "runtime-actix-rustls", "postgres", "time", "offline" ] } db-core = {path = "../db-core", features = ["test"]}