pr-tracker/Cargo.toml

34 lines
697 B
TOML
Raw Normal View History

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"
2022-03-22 15:10:26 +01:00
version = "1.2.0"
2021-02-14 12:57:45 +01:00
authors = ["Alyssa Ross <hi@alyssa.is>"]
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
structopt = "0.3.21"
futures-util = "0.3.12"
[dependencies.async-std]
version = "*" # Use whatever tide uses.
features = ["attributes"]
[dependencies.tide]
version = "0.16.0"
default-features = false
features = ["h1-server", "logger"]