This repository has been archived on 2021-12-24. You can view files and clone it, but cannot push or open issues/pull-requests.
hilde/Cargo.toml

41 lines
712 B
TOML

[package]
name = "hilde"
version = "0.1.0"
authors = ["Jef Roosens <roosensjef@gmail.com>"]
edition = "2018"
[lib]
name = "libhilde"
path = "src/libhilde/lib.rs"
test = true
bench = true
doc = true
doctest = true
[[bin]]
name = "hilde"
path = "src/hilde/main.rs"
test = true
bench = true
doc = true
doctest = true
[dependencies]
diesel = { version = "1.4.*", features = ["postgres", "uuidv07"] }
diesel_migrations = "1.4.*"
openssl = "*"
[dependencies.rocket]
version = "0.5.0-rc.1"
features = ["json"]
[dependencies.rocket_sync_db_pools]
version = "0.1.0-rc.1"
default_features = false
features = ["diesel_postgres_pool"]
[dependencies.uuid]
version = "0.8.2"
default_features = false
features = [ "v4" ]