[package] name = "md-manuscript" version = "0.1.0" edition = "2021" description = "Draggable markdown manuscript editor with git sync and ODT export" [dependencies] eframe = { version = "0.29", default-features = true } egui = "0.29" serde = { version = "1", features = ["derive"] } serde_json = "1" pulldown-cmark = { version = "0.12", default-features = false } zip = { version = "2", default-features = false, features = ["deflate"] } dirs = "5" # Native open/save dialogs via the XDG Desktop Portal (no GTK build dependency). rfd = { version = "0.15", default-features = false, features = ["xdg-portal", "async-std"] } # Blocking HTTP client for talking to a LanguageTool server. The rustls TLS # backend links statically (no new runtime .so deps), so both a plain-HTTP local # server and an HTTPS domain work. ureq = { version = "2", default-features = false, features = ["tls"] } [profile.release] opt-level = 2