You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
865 B
37 lines
865 B
[package] |
|
authors = ["Daniel Garcia <danigm@wadobo.com>"] |
|
name = "fractal-matrix-api" |
|
version = "4.4.0" |
|
workspace = "../" |
|
edition = "2018" |
|
|
|
description = """ |
|
Library to communicate with a Matrix.org server |
|
""" |
|
keywords = [ |
|
"matrix", "fractal" |
|
] |
|
license = "GPL-3.0" |
|
repository = "https://gitlab.gnome.org/GNOME/fractal" |
|
documentation = "https://gnome.pages.gitlab.gnome.org/fractal/fractal_matrix_api/index.html" |
|
|
|
[dependencies] |
|
gio = "0.9.0" |
|
serde_json = "1.0.48" |
|
|
|
[dependencies.serde] |
|
version = "1.0.104" |
|
features = ["derive"] |
|
|
|
[dependencies.reqwest] |
|
version = "0.10.3" |
|
features = ["blocking", "json", "gzip", "socks"] |
|
|
|
[dependencies.url] |
|
version = "2.1.1" |
|
features = ["serde"] |
|
|
|
[dependencies.matrix-sdk] |
|
git = "https://github.com/matrix-org/matrix-rust-sdk.git" |
|
rev = "0422bae92485b033d4f9b56f2331909653655609" |
|
features = ["unstable-synapse-quirks", "socks"]
|
|
|