migrant_lib 0.17.2

Database migration and configuration library for postgres, sqlite, mysql
Documentation
# 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 believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

[package]
name = "migrant_lib"
version = "0.17.2"
authors = ["James Kominick <james.kominick@gmail.com>"]
exclude = ["/ci/*", "/db/*", "/migrations/*", "Migrant.toml", ".travis.yml"]
description = "Database migration and configuration library for postgres, sqlite, mysql"
readme = "README.md"
keywords = ["database", "migration", "postgres", "sqlite", "mysql"]
categories = ["database", "development-tools"]
license = "MIT"
repository = "https://github.com/jaemk/migrant_lib"
[dependencies.chrono]
version = "0.4"

[dependencies.error-chain]
version = "0.11"

[dependencies.lazy_static]
version = "1"

[dependencies.log]
version = "0.4"

[dependencies.mysql]
version = "12"
optional = true

[dependencies.percent-encoding]
version = "1"

[dependencies.postgres]
version = "0.15"
optional = true

[dependencies.regex]
version = "0.2"

[dependencies.rusqlite]
version = "0.13"
features = ["bundled"]
optional = true

[dependencies.serde]
version = "1"

[dependencies.serde_derive]
version = "1"

[dependencies.serde_json]
version = "1"

[dependencies.toml]
version = "0.4"

[dependencies.url]
version = "1"

[dependencies.walkdir]
version = "2"

[features]
d-all = ["d-sqlite", "d-postgres", "d-mysql"]
d-mysql = ["mysql"]
d-postgres = ["postgres"]
d-sqlite = ["rusqlite"]
default = []