clippable/Cargo.toml
shockrah d41aacb629 - Removing clippable-cli tool as it's not useful
File upload is something I'll figure out later
2021-10-16 19:51:45 -07:00

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"]