Gleam + Relm4 foreign node POC over Erlang distribution
0

Configure Feed

Select the types of activity you want to include in your feed.

gleamtk / ui / Cargo.toml
463 B 17 lines
1[package] 2name = "gleamtk-ui" 3version = "0.1.0" 4edition = "2021" 5description = "Relm4 foreign node controlled by Gleam over Erlang distribution" 6license = "MIT" 7 8[dependencies] 9relm4 = { version = "0.11", features = ["libadwaita"] } 10gtk4 = { version = "0.11", features = ["v4_10"] } 11libadwaita = { version = "0.9", features = ["v1_5"] } 12erl_dist = "0.8" 13eetf = "0.11" 14futures = "0.3" 15smol = "2" 16async-channel = "2" 17clap = { version = "4", features = ["derive"] }