-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (37 loc) · 942 Bytes
/
Cargo.toml
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
[package]
name = "bibi"
description = "A simple Hololive Schedule CLI tool."
version = "0.3.0"
authors = ["Miika Kurvinen <myuwi@proton.me>"]
license = "MIT"
edition = "2021"
[workspace]
members = ["types"]
[workspace.dependencies]
bibi_types = { path = "types" }
chrono = "0.4.19"
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
[dependencies]
ansi_term = "0.12.1"
anyhow = "1.0"
atty = "0.2.14"
bibi_types.workspace = true
chrono.workspace = true
chrono-tz = "0.6.1"
clap = { version = "4.0.9", features = ["derive"] }
directories = "4.0.1"
futures = "0.3"
regex = "1"
reqwest = { version = "0.11", features = ["blocking", "json"] }
scraper = "0.13.0"
serde.workspace = true
serde_json.workspace = true
thiserror = "1.0"
tokio = { version = "1", features = ["full"] }
toml = "0.5.9"
unicode-width = "0.1.7"
[build-dependencies]
bibi_types.workspace = true
serde.workspace = true
serde_json.workspace = true