emojos/Cargo.toml

22 lines
813 B
TOML
Raw Normal View History

[package]
name = "emojos-dot-in"
version = "2.0.0"
edition = "2021"
2024-04-20 09:17:37 -07:00
rust-version = "1.73" # kept in sync with nixos stable
license = "AGPL-3.0-or-later"
description = "Shows custom emoji for Mastodon/Pleroma instances"
homepage = "https://emojos.in"
repository = "https://github.com/iliana/emojos.in"
publish = false
2023-04-05 20:16:12 -07:00
include = ["/build.rs", "/src", "/static", "/templates", "/LICENSE", ".gitignore"]
[dependencies]
2023-04-05 20:58:21 -07:00
askama = { version = "0.12", default-features = false }
2024-04-20 09:17:37 -07:00
reqwest = { version = "0.12", features = ["gzip", "brotli", "deflate", "json"] }
2023-11-17 12:47:50 -08:00
rocket = { version = "0.5", default-features = false }
serde = { version = "1", features = ["derive"] }
tokio = { version = "1", features = ["rt-multi-thread"] }
[build-dependencies]
zip = { version = "0.6", default-features = false, features = ["deflate"] }