Merge branch 'master' into beacon

This commit is contained in:
Héctor Ramón Jiménez 2024-05-09 12:32:25 +02:00
commit aaf396256e
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
284 changed files with 18747 additions and 15450 deletions

View file

@ -12,9 +12,7 @@ keywords.workspace = true
[dependencies]
iced_core.workspace = true
iced_style.workspace = true
iced_style.features = ["serde"]
iced_core.features = ["serde"]
bincode.workspace = true
futures.workspace = true

View file

@ -1,5 +1,5 @@
use crate::core::time::SystemTime;
use crate::style::theme;
use crate::theme;
use crate::{Input, Timing, SOCKET_ADDRESS};
use tokio::io::{self, AsyncWriteExt};

View file

@ -1,12 +1,11 @@
pub use iced_core as core;
pub use iced_style as style;
pub use semver::Version;
pub mod client;
pub mod timing;
use crate::core::theme;
use crate::core::time::SystemTime;
use crate::style::theme;
use crate::timing::Timing;
use futures::future;