fixed undo/redo bugs

renamed rdraught-ui to rdraught-gtk
This commit is contained in:
2025-07-03 10:37:15 +08:00
parent dd0777ff9a
commit e5182c26f3
16 changed files with 293 additions and 70 deletions

27
rdraught-gtk/Cargo.toml Normal file
View File

@@ -0,0 +1,27 @@
[package]
name = "rdraught-gtk"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
version.workspace = true
[dependencies]
gtk4.workspace = true
gdk4.workspace = true
rdraught = {workspace = true, features = ["std"]}
librsvg.workspace = true
cairo-rs.workspace = true
gio.workspace = true
glib.workspace = true
[lib]
name = "rdraught_gtk"
crate-type = ["lib"]
bench = false
[[bin]]
name = "rdraught-gtk"
path = "src/main.rs"