23 lines
792 B
TOML
23 lines
792 B
TOML
[package]
|
|
name = "mxmonzo"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
# we use new features not quite yet in a released matrix rust SDK
|
|
matrix-sdk = "0.5.0"
|
|
#matrix-sdk = { git = "https://github.com/matrix-org/matrix-rust-sdk.git", rev = "a49a7fe1f93a4e8791dbbe4fd6876c587c33d2fa", features = ["encryption", "sled_cryptostore"] }
|
|
monzo-lib = "0.4.4"
|
|
#monzo-lib = { git = "https://github.com/danieleades/monzo-lib.git", rev = "e54ff827" }
|
|
tokio = { version = "1.13.0", features = [ "full" ] }
|
|
anyhow = "1.0.45"
|
|
warp = "0.3.1"
|
|
url = "2.2.2"
|
|
serde = { version = "1.0.130", features = [ "derive" ] }
|
|
serde_json = "1.0.69"
|
|
reqwest = { version = "0.11", features = [ "json" ] }
|
|
envy = "0.4"
|
|
|