geoffrey/Cargo.toml

32 lines
915 B
TOML
Raw Normal View History

2021-06-30 00:53:53 +00:00
[package]
name = "geoffrey"
version = "0.1.0"
edition = "2018"
2021-06-30 00:59:19 +00:00
authors = ["R Tyler Croy <rtyler@brokenco.de>"]
description = "The freshest butler in Bel-air"
2021-06-30 00:53:53 +00:00
[dependencies]
async-std = { version = "1", features = ["attributes"] }
2021-06-30 00:59:19 +00:00
dotenv = "*"
# Used for traversing directory structures
glob = "0"
# For rendering simple HTTP views
2021-06-30 00:59:19 +00:00
handlebars = { version = "4", features = ["dir_source"] }
log = "*"
pretty_env_logger = "0.3"
# Used for embedding templates, etc for an all in one binary
rust-embed = "5"
# All the object serialization for APIs and persisting data on disk
serde = { version = "1", features = ["derive"] }
serde_qs = "0.7"
serde_json = "1"
serde_yaml = "0.8"
2021-06-30 00:59:19 +00:00
#sqlx = { version = "0.5", features = ["chrono", "json", "offline", "postgres", "uuid", "runtime-async-std-rustls"] }
# Web framework
2021-06-30 00:59:19 +00:00
tide = "*"
# Localization support
y10n = { "git" = "https://github.com/rtyler/y10n", branch = "main" }