1
0
Fork 0
Rust-Rocket-Project/Cargo.toml

15 lines
547 B
TOML
Raw Permalink Normal View History

2021-02-26 21:22:31 +01:00
[package]
2021-07-08 09:00:00 +02:00
name = "project_test"
2021-02-26 21:22:31 +01:00
version = "0.1.0"
edition = "2018"
2021-07-08 23:29:40 +02:00
publish = false
2021-02-26 21:22:31 +01:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-07-08 09:00:00 +02:00
rocket = { version = "0.5.0-rc.1", features = ["secrets", "tls", "json"] }
rocket_codegen = "0.5.0-rc.1"
rocket_sync_db_pools = { version = "0.1.0-rc.1", features = ["diesel_sqlite_pool"] }
2021-07-08 23:29:40 +02:00
rocket_dyn_templates = { version = "0.1.0-rc.1", features = ["tera"] }
2021-07-08 09:53:19 +02:00
diesel = { version = "1.4.0", features = ["sqlite", "r2d2"] }
diesel_migrations = "1.4.0"