35 lines
1.2 KiB
TOML
35 lines
1.2 KiB
TOML
[package]
|
|
name = "its-matrix-bot"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
rust-version = "1.65"
|
|
|
|
description = "IT-Syndikat matrix bot"
|
|
repository = "https://git.it-syndikat.org/IT-Syndikat/its-matrix-bot"
|
|
license = "AGPL-3.0-or-later"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
clap = { version = "4.0.22", features = ["color", "derive"] }
|
|
matrix-sdk = { version = "0.6.2", features = ["e2e-encryption"] }
|
|
never-say-never = "6.6.666"
|
|
reqwest = { version = "0.11.12", features = ["json"] }
|
|
serde = { version = "1.0.147", features = ["derive"] }
|
|
spaceapi = "0.8.1"
|
|
thiserror = "1.0.37"
|
|
time = { version = "0.3.17", features = ["local-offset", "formatting", "macros"] }
|
|
tokio = { version = "1.21.2", features = ["full"] }
|
|
toml = "0.7.6"
|
|
url = { version = "2.3.1", features = ["serde"] }
|
|
xdg = "2.4.1"
|
|
|
|
# logging
|
|
color-eyre = "0.6.2"
|
|
tracing = "0.1.37"
|
|
tracing-error = "0.2.0"
|
|
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
|
|
|
|
[patch.crates-io]
|
|
# https://github.com/spaceapi-community/spaceapi-rs/pull/111
|
|
spaceapi = { git = "https://github.com/Xiretza/spaceapi-rs", branch = "icon-closed-fix" }
|