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