+ Contains base files and a resume file + More links are planned for the future + Might need some cleanup work and testing in the future
20 lines
402 B
TOML
20 lines
402 B
TOML
[package]
|
|
name = "jsite"
|
|
version = "0.1.0"
|
|
authors = ["Joey Hines <joey@ahines.net>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
rocket = "0.4.2"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
serde_json = "1.0"
|
|
|
|
[dependencies.rocket_contrib]
|
|
version = "0.4.2"
|
|
default-features = false
|
|
features = ["tera_templates", "serve"]
|
|
|