parent
6f8a76cb13
commit
787201c3a8
File diff suppressed because it is too large
Load Diff
|
|
@ -8,9 +8,8 @@ edition = "2021"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
serde = { version = "1.0.156", features = ["derive"] }
|
serde = { version = "1.0.156", features = ["derive"] }
|
||||||
serde_yaml = "0.9.19"
|
serde_yaml = "0.9.19"
|
||||||
serde_json = "1"
|
serde_json = { version = "1", default-features=false, features=["alloc"] }
|
||||||
iced = "0.8.0"
|
iced = { version = "0.8.0", default-features=false, features = ["glow"] }
|
||||||
iced_native = "0.9.1"
|
|
||||||
handlebars = "4"
|
handlebars = "4"
|
||||||
iced_futures = { version = "0.6.0", features = ["async-std"] }
|
iced_futures = { version = "0.6.0", default-features=false, features = ["async-std"] }
|
||||||
reqwest = { version = "0.11", features = ["blocking"] }
|
reqwest = { version = "0.11", default-features=false, features = ["blocking"] }
|
||||||
|
|
|
||||||
|
|
@ -76,7 +76,7 @@ struct Stick {
|
||||||
|
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, Clone)]
|
||||||
enum Message {
|
enum Message {
|
||||||
EventOccurred(iced_native::Event),
|
EventOccurred(iced::Event),
|
||||||
Tick,
|
Tick,
|
||||||
InputTextEntryUpdate(String),
|
InputTextEntryUpdate(String),
|
||||||
InputTextEntrySubmitSay,
|
InputTextEntrySubmitSay,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue