
This should make building much more straight forward in the future as currently builds have to follow a much stranger method - Removed fluff storage file No longer going to support uploading API. This is with the assumption that most who use this software are going to know how to upload files to their server anyway
18 lines
485 B
TOML
18 lines
485 B
TOML
[package]
|
|
name = "clippable-server"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
#rocket = { git = "https://github.com/SergioBenitez/Rocket", features = [ "json" ] }
|
|
rocket = { version = "0.5.0-rc.1", features = [ "json" ] }
|
|
serde = { version = "1.0", features = [ "derive" ] }
|
|
lazy_static = "1.4.0"
|
|
|
|
|
|
[dependencies.rocket_dyn_templates]
|
|
version = "0.1.0-rc.1"
|
|
features = ["tera"]
|