mirror of
https://github.com/rwf2/Rocket.git
synced 2025-01-06 01:32:36 +00:00
65baa83fb4
* 'memchr' to 2.0 * 'base64' to 0.9 * 'smallvec' to 0.6 * 'lazy_static' to 1.0 Update example dependencies. * 'rand' to 0.4 * 'parking_lot' to 0.5
26 lines
570 B
TOML
26 lines
570 B
TOML
[package]
|
|
name = "todo"
|
|
version = "0.0.0"
|
|
workspace = "../../"
|
|
|
|
[dependencies]
|
|
rocket = { path = "../../lib" }
|
|
rocket_codegen = { path = "../../codegen" }
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
serde_derive = "1.0"
|
|
r2d2 = "0.8"
|
|
diesel = { version = "1.0", features = ["sqlite"] }
|
|
diesel_derives = { version = "1.0", features = ["sqlite"] }
|
|
r2d2-diesel = "1.0"
|
|
dotenv = "0.10"
|
|
|
|
[dev-dependencies]
|
|
parking_lot = {version = "0.5", features = ["nightly"]}
|
|
rand = "0.4"
|
|
|
|
[dependencies.rocket_contrib]
|
|
path = "../../contrib"
|
|
default_features = false
|
|
features = [ "tera_templates" ]
|