Cargo.toml (1052B)
1 [package] 2 name = "mxctest" 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 js_int = "0.1.5" 11 rocket = { git = "https://github.com/SergioBenitez/Rocket.git", branch = "async", features = ["tls"] } 12 http = "0.2.1" 13 log = "0.4.8" 14 tokio = { version = "0.2.21", features = ["macros"] } 15 serde_json = { version = "1.0.53", features = ["raw_value"] } 16 serde = { version = "1.0", features = ["derive"] } 17 thiserror = "1.0.19" 18 anyhow = "1.0" 19 20 [dependencies.ruma] 21 git = "https://github.com/ruma/ruma" 22 rev = "12388c3fbc8ba2a685cbf0fe810c633c827f5b2c" 23 features = ["rand", "client-api", "federation-api"] 24 25 # These are required only until ruma-events and ruma-federation-api are merged into ruma/ruma 26 [patch.crates-io] 27 ruma-common = { git = "https://github.com/ruma/ruma", rev = "12388c3fbc8ba2a685cbf0fe810c633c827f5b2c" } 28 ruma-serde = { git = "https://github.com/ruma/ruma", rev = "12388c3fbc8ba2a685cbf0fe810c633c827f5b2c" }