19 lines
524 B
TOML
19 lines
524 B
TOML
|
# SPDX-FileCopyrightText: 2023 Louis Hollingworth <louis@hollingworth.nl>
|
||
|
#
|
||
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||
|
|
||
|
[package]
|
||
|
name = "klara-matrix"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
||
|
[dependencies]
|
||
|
anyhow = "1.0.75"
|
||
|
dotenvy = "0.15.7"
|
||
|
matrix-sdk = { version = "0.6.2", features = ["anyhow", "markdown"] }
|
||
|
thiserror = "1.0.50"
|
||
|
tokio = { version = "1.34.0", features = ["full", "tracing"] }
|
||
|
tracing-subscriber = "0.3.18"
|