mirror of
https://github.com/l5yth/potato-mesh.git
synced 2026-06-26 21:12:07 +02:00
2bd69415c1
* matrix: create potato-matrix-bridge
* matrix: add unit tests
* matrix: address review comments
* ci: condition github actions to only run on paths affected...
* Add comprehensive unit tests for config, matrix, potatomesh, and main modules
* Revert "Add comprehensive unit tests for config, matrix, potatomesh, and main modules"
This reverts commit 212522b4a2.
* matrix: add unit tests
* matrix: add unit tests
* matrix: add unit tests
20 lines
504 B
TOML
20 lines
504 B
TOML
[package]
|
|
name = "potatomesh-matrix-bridge"
|
|
version = "0.5.7"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread", "time"] }
|
|
reqwest = { version = "0.12", features = ["json", "rustls-tls"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
toml = "0.9"
|
|
anyhow = "1"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
|
|
urlencoding = "2"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|
|
mockito = "1"
|
|
serial_test = "3" |