29 lines
471 B
TOML
29 lines
471 B
TOML
[package]
|
|
name = "clippable"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
|
|
[workspace]
|
|
members = [ "api" ]
|
|
|
|
[[bin]]
|
|
name = "api"
|
|
path = "api/src/main.rs"
|
|
|
|
[dependencies]
|
|
# For json hehexd
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
# For commanline parsing
|
|
clap = "2.33.3"
|
|
|
|
# For the backend server we just use rocket
|
|
rocket = { version = "0.5.0-rc.1", features = [ "json" ] }
|
|
tokio = "1.0"
|
|
|
|
[dependencies.rocket_dyn_templates]
|
|
version = "0.1.0-rc.1"
|
|
features = ["tera"]
|
|
|