fractal/Cargo.toml

41 lines
988 B
TOML
Raw Normal View History

2021-02-04 19:25:29 +00:00
[package]
name = "fractal"
version = "0.1.0"
authors = ["Daniel García Moreno <danigm@wadobo.com>"]
edition = "2018"
[profile.dev.package."*"]
opt-level = 3
2021-02-04 19:25:29 +00:00
[dependencies]
log = "0.4"
tracing-subscriber = "0.2"
2021-02-04 19:25:29 +00:00
gettext-rs = { version = "0.5", features = ["gettext-system"] }
gtk-macros = "0.2"
once_cell = "1.5"
2021-02-23 15:10:14 +00:00
serde_json = "1.0"
tokio = { version = "1.2", features = ["rt", "rt-multi-thread"] }
url = "2.2"
secret-service = "2.0"
2021-04-20 17:20:16 +00:00
html2pango = "0.4"
2021-04-27 10:25:31 +00:00
futures = "0.3"
rand = "0.8"
indexmap = "1.6.2"
2021-02-04 19:25:29 +00:00
2021-04-22 10:22:03 +00:00
[dependencies.sourceview]
branch = "main"
package = "sourceview5"
git = "https://gitlab.gnome.org/World/Rust/sourceview5-rs.git"
2021-02-04 19:25:29 +00:00
[dependencies.gtk]
package = "gtk4"
git = "https://github.com/gtk-rs/gtk4-rs"
2021-02-12 23:11:59 +00:00
2021-02-12 23:16:16 +00:00
[dependencies.adw]
2021-02-12 23:11:59 +00:00
package = "libadwaita"
git = "https://gitlab.gnome.org/World/Rust/libadwaita-rs.git"
2021-02-23 15:10:14 +00:00
[dependencies.matrix-sdk]
git = "https://github.com/matrix-org/matrix-rust-sdk.git"
2021-05-21 14:18:16 +00:00
features = ["socks", "encryption", "sled_cryptostore", "sled_state_store", "markdown"]