diff options
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 14 |
1 files changed, 5 insertions, 9 deletions
@@ -15,21 +15,17 @@ dirs = "2.0.2" rusqlite = "0.21.0" # Until RFC #2887 is merged, image and rocket are deps of the CLI tool as well. -image = "0.23.4" -rocket = "0.4.4" +image = "0.23" +rocket = "0.4" +rocket_contrib = { version = "0.4", default-features = false, features = ["handlebars_templates", "json", "serve"] } serde = "1.0" serde_json = "1.0" serde_derive = "1.0" -[dependencies.rocket_contrib] -version = "0.4.4" -default-features = false -features = ["handlebars_templates", "json", "serve"] - [[bin]] name = "birka-cli" path = "src/birka-cli.rs" [[bin]] -name = "birka" -path = "src/main.rs" +name = "birka-web" +path = "src/birka-web.rs" |