2021-10-24 00:44:08 +00:00
|
|
|
[package]
|
2021-10-25 10:24:57 +00:00
|
|
|
name = "pronouns-today-web"
|
2021-10-24 00:44:08 +00:00
|
|
|
version = "0.1.0"
|
2021-10-25 10:25:26 +00:00
|
|
|
edition = "2018"
|
2021-10-24 00:44:08 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
pronouns_today = {path = ".."}
|
|
|
|
actix-web = "3"
|
2021-10-24 05:24:56 +00:00
|
|
|
log = "0.4"
|
|
|
|
env_logger = "0.9"
|
|
|
|
askama = "0.10"
|
2021-10-25 15:43:52 +00:00
|
|
|
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"]
|