fractal/Cargo.toml

107 lines
2.5 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.65"
2021-02-04 19:25:29 +00:00
2022-04-04 15:27:05 +00:00
[profile.release]
debug = true
lto = "thin"
2023-03-16 09:55:01 +00:00
codegen-units = 1
2022-04-04 15:27:05 +00:00
[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
# Please keep dependencies sorted.
2021-02-04 19:25:29 +00:00
[dependencies]
2023-03-26 10:52:21 +00:00
ashpd = { version = "0.4", default-features = false, features = [
"gtk4",
"pipewire",
"tracing",
"tokio",
] }
async-stream = "0.3"
2023-03-26 10:52:21 +00:00
djb_hash = "0.1"
2023-03-30 13:03:39 +00:00
eyeball-im = "0.2"
futures = "0.3"
2023-03-26 10:52:21 +00:00
geo-uri = "0.2"
gettext-rs = { version = "0.7", features = ["gettext-system"] }
2023-03-26 10:52:21 +00:00
gst = { version = "0.20", package = "gstreamer" }
gst_base = { version = "0.20", package = "gstreamer-base" }
gst_gtk = { version = "0.10", package = "gst-plugin-gtk4" }
gst_pbutils = { version = "0.20", package = "gstreamer-pbutils" }
gst_play = { version = "0.20", package = "gstreamer-play" }
gst_video = { version = "0.20", package = "gstreamer-video" }
html-escape = "0.2"
html2pango = "0.5"
image = "0.24"
2023-03-26 10:52:21 +00:00
indexmap = "1"
log = "0.4"
2023-03-26 10:52:21 +00:00
mime = "0.3"
mime_guess = "2"
once_cell = "1"
oo7 = { version = "0.1", default-features = false, features = [
"native_crypto",
"tokio",
"tracing",
] }
2023-03-26 10:52:21 +00:00
pulldown-cmark = "0.9"
qrcode = "0.12"
rand = "0.8"
2023-03-26 10:52:21 +00:00
regex = "1"
rqrr = "0.6"
secular = { version = "1", features = ["bmp", "normalization"] }
serde = "1"
serde_json = "1"
thiserror = "1"
tokio = { version = "1", features = ["rt", "rt-multi-thread", "sync"] }
tracing-subscriber = "0.3"
2023-03-26 10:52:21 +00:00
url = "2"
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"
2023-03-26 10:52:21 +00:00
version = "0.3"
features = ["v1_3"]
2021-02-23 15:10:14 +00:00
[dependencies.gtk]
package = "gtk4"
2023-03-26 10:52:21 +00:00
version = "0.6"
2023-03-16 10:37:51 +00:00
features = ["v4_10"]
2021-02-23 15:10:14 +00:00
[dependencies.matrix-sdk]
git = "https://github.com/zecakeh/matrix-rust-sdk.git"
rev = "4002c7fad13bf058962976d9b08e0e03b70b49b2"
features = [
"socks",
"sso-login",
"markdown",
"qrcode",
"experimental-timeline",
"image-rayon",
]
2022-03-29 13:45:13 +00:00
[dependencies.ruma]
2023-03-13 16:41:39 +00:00
# version = "0.8.2"
git = "https://github.com/ruma/ruma.git"
rev = "0143bd9b9f5dcfcaa835afb76f342c12f014f945"
features = ["unstable-unspecified", "client-api-c", "unstable-sanitize"]
2022-10-22 08:48:23 +00:00
[dependencies.shumate]
package = "libshumate"
2023-03-26 10:52:21 +00:00
version = "0.3"
[dependencies.sourceview]
package = "sourceview5"
2023-03-26 10:52:21 +00:00
version = "0.6"
# FIXME: Remove when matrix-sdk dependencies don't pin zeroize (conflict with oo7)
2022-10-22 08:48:23 +00:00
[patch.crates-io.x25519-dalek]
git = "https://github.com/A6GibKm/x25519-dalek"
rev = "9f19028c34107eea87d37bcee2eb2b350ec34cfe"