2021-02-14 12:57:45 +01:00
|
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
# SPDX-FileCopyrightText: 2021 Alyssa Ross <hi@alyssa.is>
|
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "pr-tracker"
|
2024-07-26 21:27:43 +02:00
|
|
|
version = "1.5.0"
|
|
|
|
authors = ["Patrick <patrick@failmail.dev>"]
|
2024-07-14 00:57:03 +02:00
|
|
|
edition = "2021"
|
2021-02-14 12:57:45 +01:00
|
|
|
license = "AGPL-3.0-or-later WITH GPL-3.0-linking-exception"
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
pkg-config = "0.3.19"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
http-types = "*"
|
|
|
|
once_cell = "1.5"
|
|
|
|
regex = "1.4"
|
|
|
|
surf = "2.1"
|
|
|
|
serde_json = "1.0"
|
2023-10-28 12:14:45 +02:00
|
|
|
graphql_client = "0.13.0"
|
2021-02-14 12:57:45 +01:00
|
|
|
serde = "1.0"
|
2023-10-28 12:12:12 +02:00
|
|
|
askama = "0.12.1"
|
2021-02-14 12:57:45 +01:00
|
|
|
futures-util = "0.3.12"
|
2024-07-15 22:09:52 +02:00
|
|
|
lettre = "0.11.7"
|
|
|
|
anyhow = "1.0.86"
|
2024-07-17 23:09:38 +02:00
|
|
|
clap = { version = "4.5.9", features = ["derive"] }
|
2024-07-18 01:03:05 +02:00
|
|
|
urlencoding = "2.1.3"
|
2021-02-14 12:57:45 +01:00
|
|
|
|
|
|
|
[dependencies.async-std]
|
|
|
|
version = "*" # Use whatever tide uses.
|
|
|
|
features = ["attributes"]
|
|
|
|
|
|
|
|
[dependencies.tide]
|
|
|
|
version = "0.16.0"
|
|
|
|
default-features = false
|
|
|
|
features = ["h1-server", "logger"]
|