# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2018" name = "pg-embed" version = "0.7.1" authors = ["Franz-Aliu Okunega "] description = "Run a Postgresql database locally on Linux, MacOS or Windows as part of another Rust application or test." documentation = "https://docs.rs/pg-embed" readme = "README.md" keywords = [ "database", "postgres", "postgresql", "embedded", "server", ] categories = [ "database", "database-implementations", "development-tools", "asynchronous", ] license = "MIT/Apache-2.0" repository = "https://github.com/faokunega/pg-embed" [[test]] name = "migration_tokio" path = "tests/migration_tokio.rs" required-features = ["rt_tokio_migrate"] [[test]] name = "migration_actix" path = "tests/migration_actix.rs" required-features = ["rt_actix_migrate"] [[test]] name = "migration_async_std" path = "tests/migration_async_std.rs" required-features = ["rt_async_std_migrate"] [[test]] name = "postgres_tokio1" path = "tests/postgres_tokio.rs" required-features = ["rt_tokio"] [[test]] name = "postgres_tokio2" path = "tests/postgres_tokio.rs" required-features = ["rt_tokio_migrate"] [[test]] name = "postgres_actix" path = "tests/postgres_actix.rs" required-features = ["rt_actix"] [[test]] name = "postgres_async_std" path = "tests/postgres_async_std.rs" required-features = ["rt_async_std"] [dependencies.archiver-rs] version = "0.5" [dependencies.async-std] version = "1.9.0" features = ["attributes"] optional = true [dependencies.async-trait] version = "0.1" [dependencies.bytes] version = "1.0" [dependencies.dirs] version = "3.0" [dependencies.futures] version = "0.3" [dependencies.lazy_static] version = "1.4" [dependencies.log] version = "0.4" [dependencies.reqwest] version = "0.11" optional = true [dependencies.sqlx_actix] version = "0.6" features = [ "runtime-actix-rustls", "postgres", "migrate", ] optional = true package = "sqlx" [dependencies.sqlx_async_std] version = "0.6" features = [ "runtime-async-std-rustls", "postgres", "migrate", ] optional = true package = "sqlx" [dependencies.sqlx_tokio] version = "0.6" features = [ "runtime-tokio-rustls", "postgres", "migrate", ] optional = true package = "sqlx" [dependencies.surf] version = "2.2" optional = true [dependencies.thiserror] version = "1.0" [dependencies.tokio] version = "1" features = ["full"] optional = true [dependencies.zip] version = "0.5.11" [dev-dependencies.env_logger] version = "0.8" [dev-dependencies.serial_test] version = "0.5" [features] default = ["rt_tokio_migrate"] rt_actix = [ "tokio", "reqwest", ] rt_actix_migrate = [ "tokio", "reqwest", "sqlx_actix", ] rt_async_std = [ "async-std", "surf", ] rt_async_std_migrate = [ "async-std", "surf", "sqlx_async_std", ] rt_tokio = [ "tokio", "reqwest", ] rt_tokio_migrate = [ "tokio", "reqwest", "sqlx_tokio", ]