-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
37 lines (31 loc) · 990 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
[package]
name = "chore_planner"
version = "2.0.0"
authors = ["Christopher Besch <mail@chris-besch.com>"]
edition = "2021"
[[bin]]
name = "chore_planner"
path = "src/main.rs"
[dependencies]
tokio = { version = "1.40.0", features = ["full"] }
anyhow = "1.0.87"
chrono = "0.4.38"
rand = { version = "0.8.5", features = ["std_rng"] }
sqlx = { version = "0.8.2", features = ["sqlite", "runtime-tokio"] }
# formatting
tabled = "0.16.0"
# command parsing
shellwords = "1.1.0"
clap = { version = "4.5.17", features = ["derive", "wrap_help"] }
# telegram
# Use rustls instead of openssl.
# This makes cross compiling easier.
teloxide = { version = "0.13.0", default-features = false, features = ["rustls"] }
futures-util = "0.3.30"
# signal
jsonrpsee = { version = "0.24.6", features = ["async-client", "http-client", "jsonrpsee-proc-macros", "tracing"] }
serde = "1.0.210"
serde_json = "1.0.128"
tokio-util = { version = "0.7.12", features = ["codec"] }
bytes = "1.7.2"
thiserror = "1.0.64"