d33fbc37d2
This appears to work fine from inside an Alpine container, but it hasn't been extensively tested yet.
16 lines
460 B
TOML
16 lines
460 B
TOML
[package]
|
|
name = "using-diesel"
|
|
version = "0.1.0"
|
|
authors = ["Eric Kidd <git@randomhacks.net>"]
|
|
|
|
[dependencies]
|
|
diesel = { version = "1.0.0-beta1", features = ["postgres", "sqlite"] }
|
|
# Needed for sqlite.
|
|
libsqlite3-sys = { version = "*", features = ["bundled"] }
|
|
# Needed for Postgres.
|
|
openssl-sys = "*"
|
|
|
|
[patch.crates-io]
|
|
# Needed for Postgres. Patches the build script to support cross-compilation.
|
|
pq-sys = { git = 'https://github.com/golddranks/pq-sys' }
|