- Removing base64 and rocket_contrib deps from project

This commit is contained in:
shockrah 2021-10-16 18:15:18 -07:00
parent c53d9a293e
commit e54314a629
3 changed files with 117 additions and 474 deletions

1
.gitignore vendored
View File

@ -12,3 +12,4 @@ frontend/themes/clippable/static/js/category.js
frontend/themes/clippable/static/js/collection.js
api/static/js/
api/thumbs/
build/

581
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -18,10 +18,6 @@ path = "api/src/main.rs"
# For json hehexd
serde = { version = "1.0", features = ["derive"] }
# This is primarily for turning images(thumbnails) in the api
# into base64 strings
base64 = "0.13.0"
# For commanline parsing
clap = "2.33.3"
@ -29,11 +25,6 @@ clap = "2.33.3"
rocket = { version = "0.5.0-rc.1", features = [ "json" ] }
tokio = "1.0"
[dependencies.rocket_contrib]
version = "0.4.10"
default-features = false
features = ["serve", "json"]
[dependencies.rocket_dyn_templates]
version = "0.1.0-rc.1"
features = ["tera"]