Cargo.toml (1191B)
1 [package] 2 name = "mx-bookmarks" 3 version = "0.1.0" 4 authors = ["MTRNord <mtrnord1@gmail.com>"] 5 edition = "2018" 6 7 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 9 [dependencies] 10 crossterm = "0.18" 11 tui = { version = "0.12", default-features = false, features = ['crossterm'] } 12 13 matrix-sdk = {git = "https://github.com/matrix-org/matrix-rust-sdk.git", rev = "8f99180c99ccd74803565fb36098389198091ded"} 14 matrix-sdk-common-macros = {git = "https://github.com/matrix-org/matrix-rust-sdk.git", rev = "8f99180c99ccd74803565fb36098389198091ded"} 15 url = "2.1.1" 16 tokio = { version = "0.2", features = ["full"] } 17 async-trait = "0.1.41" 18 19 anyhow = "1.0" 20 thiserror = "1.0" 21 tracing = "0.1" 22 23 tracing-subscriber = "0.2" 24 tracing-futures = "0.2.4" 25 26 sqlx = { version = "0.3.5", default-features = false, features = [ "runtime-tokio", "macros", "sqlite" ] } 27 dotenv = "0.15.0" 28 29 serde = { version = "1.0", features = ["derive"] } 30 31 [dependencies.ruma] 32 version = "0.0.1" 33 git = "https://github.com/ruma/ruma" 34 rev = "50eb700571480d1440e15a387d10f98be8abab59" 35 features = ["client-api", "unstable-pre-spec", "unstable-exhaustive-types"] 36 37 [dev-dependencies] 38 serde_json = "1.0"