This repository has been archived on 2021-10-25. You can view files and clone it, but cannot push or open issues/pull-requests.
2021-08-18 21:53:53 +02:00
|
|
|
[package]
|
|
|
|
name = "rusty-bever"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Jef Roosens <roosensjef@gmail.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
2021-08-18 22:06:37 +02:00
|
|
|
[lib]
|
|
|
|
name = "rb"
|
|
|
|
path = "src/rb/lib.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "rbs"
|
|
|
|
path = "src/rbs/main.rs"
|
|
|
|
|
2021-08-18 21:53:53 +02:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
rocket = "0.5.0-rc.1"
|
|
|
|
diesel = { version = "1.4.7", features = ["postgres"] }
|
|
|
|
diesel_migrations = "1.4.0"
|
|
|
|
|
|
|
|
[dependencies.rocket_sync_db_pools]
|
|
|
|
version = "0.1.0-rc.1"
|
|
|
|
default_features = false
|
|
|
|
features = ["diesel_postgres_pool"]
|