diff --git a/satrs-example/Cargo.toml b/satrs-example/Cargo.toml index fa1dc88..2c74d58 100644 --- a/satrs-example/Cargo.toml +++ b/satrs-example/Cargo.toml @@ -18,7 +18,7 @@ csv = "1" num_enum = "0.7" thiserror = "2" lazy_static = "1" -strum = { version = "0.26", features = ["derive"] } +strum = { version = "0.27", features = ["derive"] } derive-new = "0.7" cfg-if = "1" serde = { version = "1", features = ["derive"] } diff --git a/satrs-example/src/bin/simpleclient.rs b/satrs-example/src/bin/simpleclient.rs index 40e85eb..12e2b35 100644 --- a/satrs-example/src/bin/simpleclient.rs +++ b/satrs-example/src/bin/simpleclient.rs @@ -1,7 +1,6 @@ use satrs::pus::verification::RequestId; use satrs::spacepackets::ecss::tc::PusTcCreator; use satrs::spacepackets::ecss::tm::PusTmReader; -use satrs::spacepackets::ecss::WritablePusPacket as _; use satrs::{spacepackets::ecss::PusPacket, spacepackets::SpHeader}; use satrs_example::config::{OBSW_SERVER_ADDR, SERVER_PORT}; use std::net::{IpAddr, SocketAddr, UdpSocket}; diff --git a/satrs-minisim/Cargo.toml b/satrs-minisim/Cargo.toml index cd21252..d941ff2 100644 --- a/satrs-minisim/Cargo.toml +++ b/satrs-minisim/Cargo.toml @@ -11,7 +11,7 @@ serde_json = "1" log = "0.4" thiserror = "2" fern = "0.7" -strum = { version = "0.26", features = ["derive"] } +strum = { version = "0.27", features = ["derive"] } num_enum = "0.7" humantime = "2" tai-time = { version = "0.3", features = ["serde"] } diff --git a/satrs/Cargo.toml b/satrs/Cargo.toml index 0065bad..b297729 100644 --- a/satrs/Cargo.toml +++ b/satrs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "satrs" -version = "0.3.0-alpha.0" +version = "0.3.0-alpha.1" edition = "2021" rust-version = "1.82.0" authors = ["Robin Mueller "] @@ -31,9 +31,9 @@ downcast-rs = { version = "2", default-features = false, optional = true } bus = { version = "2.2", optional = true } crossbeam-channel = { version = "0.5", default-features = false, optional = true } serde = { version = "1", default-features = false, optional = true } -socket2 = { version = "0.5", features = ["all"], optional = true } +socket2 = { version = "0.6", features = ["all"], optional = true } mio = { version = "1", features = ["os-poll", "net"], optional = true } -defmt = { version = "0.3", optional = true } +defmt = { version = "1", optional = true } [dev-dependencies] serde = "1"