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.
85 lines
2.0 KiB
85 lines
2.0 KiB
[package] |
|
name = "fractal" |
|
version = "5.0.0-alpha1" |
|
authors = ["Julian Sparber <julian@sparber.net>"] |
|
edition = "2018" |
|
rust-version = "1.60" |
|
|
|
[profile.release] |
|
debug = true |
|
|
|
[profile.dev.package."*"] |
|
opt-level = 3 |
|
debug = false |
|
debug-assertions = false |
|
overflow-checks = false |
|
incremental = false |
|
codegen-units = 16 |
|
|
|
[dependencies] |
|
async-stream = "0.3" |
|
log = "0.4" |
|
mime = "0.3.16" |
|
tracing-subscriber = "0.3" |
|
gettext-rs = { version = "0.7", features = ["gettext-system"] } |
|
gtk-macros = "0.3" |
|
once_cell = "1.5" |
|
serde = "1.0.130" |
|
serde_json = "1.0" |
|
tokio = { version = "1.15", features = ["rt", "rt-multi-thread", "sync"] } |
|
url = "2.2" |
|
libsecret = { version = "0.1.4", features = ["v0_19"] } |
|
html2pango = "0.5.0" |
|
futures = "0.3" |
|
rand = "0.8" |
|
indexmap = "1.6.2" |
|
qrcode = "0.12.0" |
|
ashpd = { version = "0.3", features = [ |
|
"feature_gtk4", |
|
"feature_pipewire", |
|
"log", |
|
] } |
|
gst = { version = "0.18", package = "gstreamer" } |
|
gst_base = { version = "0.18", package = "gstreamer-base" } |
|
gst_video = { version = "0.18", package = "gstreamer-video" } |
|
gst_player = { version = "0.18", package = "gstreamer-player" } |
|
gst_gtk = { version = "0.1.0", package = "gst-plugin-gtk4" } |
|
image = { version = "0.23", default-features = false, features = ["png"] } |
|
regex = "1.5.4" |
|
mime_guess = "2.0.3" |
|
num_enum = "0.5.6" |
|
thiserror = "1.0.25" |
|
rqrr = "0.4.0" |
|
secular = { version = "1.0.1", features = ["bmp", "normalization"] } |
|
pulldown-cmark = "0.9.2" |
|
|
|
[dependencies.sourceview] |
|
package = "sourceview5" |
|
version = "0.4.1" |
|
|
|
[dependencies.gtk] |
|
package = "gtk4" |
|
version = "0.4.6" |
|
features = ["v4_6"] |
|
|
|
[dependencies.adw] |
|
package = "libadwaita" |
|
version = "0.2.0-alpha.3" |
|
features = ["v1_2"] |
|
|
|
[dependencies.shumate] |
|
package = "libshumate" |
|
version = "0.1.0-alpha.4" |
|
|
|
[dependencies.matrix-sdk] |
|
git = "https://github.com/matrix-org/matrix-rust-sdk.git" |
|
features = ["socks", "sso-login", "markdown", "qrcode", "experimental-timeline"] |
|
|
|
[dependencies.ruma] |
|
version = "0.7.1" |
|
features = [ |
|
"unstable-pre-spec", |
|
"client-api-c", |
|
"unstable-msc3440", |
|
"unstable-sanitize", |
|
]
|
|
|