-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
31 lines (28 loc) · 919 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
[package]
name = "matrix-http-rendezvous-synapse"
description = "A Matrix Synapse module which implements MSC3886"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
publish = false
[lib]
name = "matrix_http_rendezvous_synapse"
crate-type = ["cdylib"]
[dependencies]
anyhow = "1.0.69"
bytesize = { version = "1.1.0", features = ["serde"] }
http-body = "0.4.5"
humantime = "2.1.0"
humantime-serde = "1.1.1"
pyo3 = { version = "0.18.1", features = ["extension-module", "abi3-py37", "anyhow"] }
pyo3-asyncio = "0.18.0"
pyo3-log = "0.8.1"
pyo3-matrix-synapse-module = "0.1.2"
serde = { version = "1.0.152", features = ["derive"] }
tokio = "1.25.0"
tower = { version = "0.4.13", features = ["util"] }
tracing = { version = "0.1.37", features = ["log", "log-always"] }
matrix-http-rendezvous = { workspace = true }