mensa/Cargo.toml

52 lines
1.2 KiB
TOML
Raw Permalink Normal View History

2019-04-04 12:58:17 +02:00
[package]
name = "mensa"
2022-06-26 16:50:09 +02:00
version = "0.5.1"
2021-10-31 11:23:51 +01:00
description = "CLI tool to query the menu of canteens contained in the OpenMensa database"
authors = [ "Malte Tammena <malte.tammena@pm.me>" ]
2021-10-11 12:22:08 +02:00
edition = "2021"
2021-10-17 13:06:19 +02:00
resolver = "2"
2021-10-19 16:56:08 +02:00
license = "MIT"
2021-10-17 13:06:19 +02:00
repository = "https://github.com/MalteT/mensa"
2021-10-31 11:23:51 +01:00
rust-version = "1.56"
keywords = [ "CLI", "uni", "mensa", "openmensa" ]
categories = [ "command-line-utilities" ]
exclude = [
"static/*",
"devshell.toml",
"flake.nix",
"flake.lock"
]
2019-04-04 12:58:17 +02:00
2021-10-13 16:15:11 +02:00
[package.metadata.nix]
build = true
toolchain = "nightly"
2019-04-04 12:58:17 +02:00
[dependencies]
2021-10-11 12:22:08 +02:00
thiserror = "1.0"
2021-10-13 16:15:11 +02:00
reqwest = { version = "0.11", features = [ "json", "blocking" ] }
2021-10-12 11:47:00 +02:00
serde = { version = "1", features = [ "derive" ] }
owo-colors = { version = "3.0", features = [ "supports-colors" ] }
terminal_size = "0.1"
2021-10-12 11:47:00 +02:00
structopt = { version = "0.3", features = [ "wrap_help" ] }
directories-next = "2.0"
2021-10-12 11:47:00 +02:00
lazy_static = "1.4"
tracing = "0.1"
tracing-subscriber = "0.2"
chrono = "0.4"
date_time_parser = "0.1"
num_enum = "0.5"
regex = "1.5"
toml = "0.5"
2021-10-12 14:51:49 +02:00
textwrap = "0.14"
unicode-width = "0.1"
2021-10-12 21:21:01 +02:00
serde_plain = "1.0"
2021-10-13 16:15:11 +02:00
remain = "0.2"
strum = { version = "0.22", features = [ "derive" ] }
2021-10-13 22:49:06 +02:00
cacache = "9.0"
serde_json = "1.0"
itertools = "0.10"
2021-10-16 18:54:57 +02:00
[dev-dependencies]
pretty_assertions = "1.0"
ssri = "7.0"