-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (48 loc) · 1.22 KB
/
Copy pathCargo.toml
File metadata and controls
51 lines (48 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "mensa"
version = "0.5.1"
description = "CLI tool to query the menu of canteens contained in the OpenMensa database"
authors = [ "Malte Tammena <malte.tammena@pm.me>" ]
edition = "2021"
resolver = "2"
license = "MIT"
repository = "https://github.com/MalteT/mensa"
rust-version = "1.56"
keywords = [ "CLI", "uni", "mensa", "openmensa" ]
categories = [ "command-line-utilities" ]
exclude = [
"static/*",
"devshell.toml",
"flake.nix",
"flake.lock"
]
[package.metadata.nix]
build = true
toolchain = "nightly"
[dependencies]
thiserror = "1.0"
reqwest = { version = "0.11", features = [ "json", "blocking" ] }
serde = { version = "1", features = [ "derive" ] }
owo-colors = { version = "3.0", features = [ "supports-colors" ] }
terminal_size = "0.1"
structopt = { version = "0.3", features = [ "wrap_help" ] }
directories-next = "2.0"
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"
textwrap = "0.14"
unicode-width = "0.1"
serde_plain = "1.0"
remain = "0.2"
strum = { version = "0.22", features = [ "derive" ] }
cacache = "9.0"
serde_json = "1.0"
itertools = "0.10"
[dev-dependencies]
pretty_assertions = "1.0"
ssri = "7.0"