mensa/Cargo.toml

43 lines
984 B
TOML
Raw Normal View History

2019-04-04 12:58:17 +02:00
[package]
name = "mensa"
2021-10-24 17:06:17 +02:00
version = "0.4.2"
2021-10-14 10:43:14 +02:00
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"
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]
temp-dir = "0.1"
pretty_assertions = "1.0"
2021-10-22 14:10:17 +02:00
assert_cmd = "2.0"