d093f03bfc
I've tried to simplify the code that group lines by quote/no-quote, it's a lot simpler using the itertools crate. This patch also adds a new enum for the message part, instead of use a simple bool, so we can manage other kind of rendering in a message. I was thinking about the Markdown code block for example.
54 lines
1.1 KiB
TOML
54 lines
1.1 KiB
TOML
[package]
|
|
authors = ["Daniel Garcia <danigm@wadobo.com>"]
|
|
build = "build.rs"
|
|
name = "fractal-gtk"
|
|
version = "3.29.5"
|
|
workspace = "../"
|
|
|
|
[dependencies]
|
|
failure = "0.1.1"
|
|
gdk = "0.8.0"
|
|
gdk-pixbuf = "0.4.0"
|
|
gdk-pixbuf-sys = "0.6.0"
|
|
gio = "0.4.1"
|
|
glib = "0.5.0"
|
|
gstreamer = "0.11.4"
|
|
gstreamer-player = "0.11.3"
|
|
notify-rust = "3.4.2"
|
|
pango = "0.4.0"
|
|
pangocairo = "0.5.0"
|
|
secret-service = "0.4.0"
|
|
serde = "1.0.70"
|
|
serde_derive = "1.0.70"
|
|
serde_json = "1.0.24"
|
|
url = "1.7.1"
|
|
rand = "0.5.4"
|
|
html2pango = { git = "https://gitlab.gnome.org/World/html2pango" }
|
|
comrak = "0.2.14"
|
|
gettext-rs = { git = "https://github.com/danigm/gettext-rs", branch = "no-gettext", features = ["gettext-system"] }
|
|
unicode-segmentation = "1.2.1"
|
|
regex = "1.0.2"
|
|
tree_magic = "0.2.0"
|
|
log = "0.4.3"
|
|
fragile = "0.2.1"
|
|
letter-avatar = "0.1.1"
|
|
sourceview = "0.4.0"
|
|
itertools = "0.7.8"
|
|
|
|
[dependencies.cairo-rs]
|
|
features = ["png"]
|
|
version = "0.4.1"
|
|
|
|
[dependencies.chrono]
|
|
features = ["serde"]
|
|
version = "0.4.4"
|
|
|
|
[dependencies.fractal-matrix-api]
|
|
path = "../fractal-matrix-api"
|
|
|
|
[dependencies.gspell]
|
|
git = "https://gitlab.gnome.org/jsparber/gspell-rs"
|
|
|
|
[dependencies.gtk]
|
|
features = ["v3_22"]
|
|
version = "0.4.1"
|