fractal/Cargo.toml

104 lines
2.2 KiB
TOML
Raw Normal View History

2021-02-04 19:25:29 +00:00
[package]
name = "fractal"
2022-09-24 17:21:32 +00:00
version = "5.0.0-alpha1"
2022-01-20 11:19:42 +00:00
authors = ["Julian Sparber <julian@sparber.net>"]
edition = "2021"
rust-version = "1.63"
2021-02-04 19:25:29 +00:00
2022-04-04 15:27:05 +00:00
[profile.release]
debug = true
[profile.dev.package."*"]
opt-level = 3
2021-09-08 13:14:55 +00:00
debug = false
debug-assertions = false
overflow-checks = false
incremental = false
codegen-units = 16
2021-02-04 19:25:29 +00:00
[dependencies]
async-stream = "0.3"
2021-02-04 19:25:29 +00:00
log = "0.4"
mime = "0.3.16"
2022-01-19 22:16:01 +00:00
tracing-subscriber = "0.3"
2021-06-29 07:38:00 +00:00
gettext-rs = { version = "0.7", features = ["gettext-system"] }
gtk-macros = "0.3"
2021-02-04 19:25:29 +00:00
once_cell = "1.5"
serde = "1.0.130"
2021-02-23 15:10:14 +00:00
serde_json = "1.0"
tokio = { version = "1.15", features = ["rt", "rt-multi-thread", "sync"] }
url = "2.2"
oo7 = { version = "=0.1.0-alpha.5", default-features = false, features = [
2022-10-22 08:48:23 +00:00
"tokio",
2022-11-12 13:14:25 +00:00
"tracing",
2022-10-22 08:48:23 +00:00
] }
html2pango = "0.5.0"
2021-04-27 10:25:31 +00:00
futures = "0.3"
rand = "0.8"
indexmap = "1.6.2"
qrcode = "0.12.0"
ashpd = { version = "0.4.0-alpha.1", features = [
"gtk4",
"pipewire",
"tracing",
] }
gst = { version = "0.19.1", package = "gstreamer" }
gst_base = { version = "0.19.1", package = "gstreamer-base" }
gst_video = { version = "0.19.0", package = "gstreamer-video" }
gst_play = { version = "0.19.0", package = "gstreamer-play" }
gst_gtk = { version = "0.9.0", package = "gst-plugin-gtk4" }
gst_pbutils = { version = "0.19.0", package = "gstreamer-pbutils" }
image = "0.24"
regex = "1.5.4"
mime_guess = "2.0.3"
num_enum = "0.5.6"
2022-03-16 16:16:34 +00:00
thiserror = "1.0.25"
rqrr = "0.5"
secular = { version = "1.0.1", features = ["bmp", "normalization"] }
pulldown-cmark = "0.9.2"
geo-uri = "0.2.0"
html-escape = "0.2.11"
2022-10-23 16:53:37 +00:00
djb_hash = "0.1.3"
2021-02-04 19:25:29 +00:00
2021-04-22 10:22:03 +00:00
[dependencies.sourceview]
package = "sourceview5"
version = "0.5.0"
2021-04-22 10:22:03 +00:00
2021-02-04 19:25:29 +00:00
[dependencies.gtk]
package = "gtk4"
version = "0.5.0"
features = ["v4_6"]
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"
version = "0.2.0"
2022-07-22 09:25:51 +00:00
features = ["v1_2"]
2021-02-23 15:10:14 +00:00
[dependencies.shumate]
package = "libshumate"
version = "0.2.0"
2021-02-23 15:10:14 +00:00
[dependencies.matrix-sdk]
version = "0.6.2"
features = [
"socks",
"sso-login",
"markdown",
"qrcode",
"experimental-timeline",
"image-rayon",
]
2022-03-29 13:45:13 +00:00
[dependencies.ruma]
version = "0.7.4"
2022-08-19 11:34:37 +00:00
features = [
"unstable-pre-spec",
"client-api-c",
"unstable-msc3440",
"unstable-sanitize",
]
2022-10-22 08:48:23 +00:00
[patch.crates-io.x25519-dalek]
git = "https://github.com/A6GibKm/x25519-dalek"
rev = "9f19028c34107eea87d37bcee2eb2b350ec34cfe"