a0c4b91955
This project depends on Tokio, via actix, and both of those are bad ideas. This wasn't as clear 3 years ago as it is now, but to demonstrate it the project has amassed issues which required at least this minimum of changes to be buildable in 2021 (using a modern rustc). Yes, this adds dozens of new dependencies again (because of a top-level update) but don't worry: They will be gone when I'm done here. Change-Id: I1dde9dc0325da7bdcb6608359fab33e27692dc1d Reviewed-on: https://cl.tvl.fyi/c/depot/+/2857 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in>
35 lines
665 B
TOML
35 lines
665 B
TOML
[package]
|
|
name = "converse"
|
|
version = "0.1.0"
|
|
authors = ["Vincent Ambo <mail@tazj.in>"]
|
|
license = "GPL-3.0"
|
|
|
|
[dependencies]
|
|
actix = "0.7"
|
|
actix-web = "0.7"
|
|
askama = "0.6"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
comrak = "0.2"
|
|
diesel = { version = "1.2", features = ["postgres", "chrono", "r2d2"]}
|
|
env_logger = "0.5"
|
|
failure = "0.1"
|
|
futures = "0.1"
|
|
hyper = "0.11"
|
|
log = "0.4"
|
|
md5 = "0.3.7"
|
|
mime_guess = "2.0.0-alpha"
|
|
pq-sys = "=0.4.4"
|
|
r2d2 = "0.8"
|
|
rand = "0.4"
|
|
reqwest = "0.9"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
serde_json = "1.0"
|
|
tokio = "0.1"
|
|
tokio-timer = "0.2"
|
|
url = "1.7"
|
|
url_serde = "0.2"
|
|
|
|
[build-dependencies]
|
|
pulldown-cmark = "0.1"
|
|
askama = "0.6"
|