gossip/Cargo.toml
Bu5hm4nn 114ed45cf0 Update to egui 0.26.0 master in progress...
BUG: currently deadlocks
TODO: Scroll delta needs to be ported (but first check out if it's still needed with egui's new smooth scrolling options)
2024-02-09 21:03:15 -06:00

23 lines
814 B
TOML

[workspace]
members = [
"gossip-lib",
"gossip-bin",
]
resolver = "2"
# Force scrypt to build with release-like speed even in dev mode
[profile.dev.package.scrypt]
opt-level = 3
debug-assertions = false
overflow-checks = false
[patch.crates-io]
# override egui crate for egui_video dependency
egui = { git = "https://github.com/bu5hm4nn/egui", rev = "31b7c13ce86065531c87e5497308d46ca3a3c13a" }
# Use the master branch of SDL2 to include a fix related to clang (and XCode after 14.2)
sdl2 = { git = "https://github.com/Rust-SDL2/rust-sdl2", rev = "f2f1e29a416bcc22f2faf411866db2c8d9536308" }
# Patch zbus since it had a dependency options bug that isn't live yet
zbus = { git = "https://github.com/dbus2/zbus/", branch = "zbus-3" }
zbus_names = { git = "https://github.com/dbus2/zbus/", branch = "zbus-3" }