25 lines
767 B
TOML
25 lines
767 B
TOML
[package]
|
|
name = "pronouns-today-web"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
pronouns_today = {path = ".."}
|
|
actix-web = "3"
|
|
log = "0.4"
|
|
env_logger = "0.9"
|
|
askama = "0.10"
|
|
rusttype = { version = "0.9.2", optional = true }
|
|
image = { version = "0.23.14", optional = true }
|
|
lazy_static = { version = "1.4.0", optional = true }
|
|
|
|
[features]
|
|
# Enables support for generating images for Open Graph Protocol cards. This means that
|
|
# when someone shares a link to their pronoun page on Twitter, Discord, or another app
|
|
# that supports OGP, the card will include a visual of their pronouns.
|
|
ogp_images = ["rusttype", "image", "lazy_static"]
|
|
|
|
default = ["ogp_images"]
|