geoffrey/Cargo.toml

32 lines
915 B
TOML

[package]
name = "geoffrey"
version = "0.1.0"
edition = "2018"
authors = ["R Tyler Croy <rtyler@brokenco.de>"]
description = "The freshest butler in Bel-air"
[dependencies]
async-std = { version = "1", features = ["attributes"] }
dotenv = "*"
# Used for traversing directory structures
glob = "0"
# For rendering simple HTTP views
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"
#sqlx = { version = "0.5", features = ["chrono", "json", "offline", "postgres", "uuid", "runtime-async-std-rustls"] }
# Web framework
tide = "*"
# Localization support
y10n = { "git" = "https://github.com/rtyler/y10n", branch = "main" }