-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
51 lines (42 loc) · 1.07 KB
/
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
42
43
44
45
46
47
48
49
50
51
[package]
name = "matrix-bot"
version = "2.0.0-beta.26"
authors = ["sparky8251 <sparky@possumlodge.me>"]
license = "AGPL-3.0-or-later"
repository = "https://github.com/sparky8251/matrix-bot/"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
graphql_client = "0.13"
once_cell = "1"
regex = "1"
axum = "0.5"
toml = "0.8"
tracing = "0.1"
uom = "0.35"
serde_json = "1"
anyhow = "1"
native_model = "0.4.11"
# Deps below are for unimplemented secured github webhook listener.
#hmac = "0.12"
#sha2 = "0.10"
#hex-literal = "0.3"
#hex = "0.4"
[dependencies.native_db]
version = "0.5"
features = ["tokio"]
[dependencies.reqwest]
version = "0.11"
features = ["json"]
[dependencies.ruma]
version = "0.7"
features = ["client-api-c", "client-ext-client-api", "client-reqwest", "unstable-msc2676", "rand"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.tokio]
version = "1"
features = ["signal", "macros", "rt-multi-thread"]
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]