Skip to content

Commit

Permalink
bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
robamu committed Nov 15, 2024
1 parent b38c617 commit 1a4d764
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 22 deletions.
10 changes: 5 additions & 5 deletions satrs-example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@ homepage = "https://egit.irs.uni-stuttgart.de/rust/sat-rs"
repository = "https://egit.irs.uni-stuttgart.de/rust/sat-rs"

[dependencies]
fern = "0.6"
fern = "0.7"
chrono = "0.4"
log = "0.4"
crossbeam-channel = "0.5"
delegate = "0.10"
zerocopy = "0.6"
delegate = "0.13"
zerocopy = "0.8"
csv = "1"
num_enum = "0.7"
thiserror = "1"
thiserror = "2"
lazy_static = "1"
strum = { version = "0.26", features = ["derive"] }
derive-new = "0.5"
derive-new = "0.7"
serde = { version = "1", features = ["derive"] }
serde_json = "1"

Expand Down
4 changes: 2 additions & 2 deletions satrs-example/src/bin/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
use crossbeam_channel::{bounded, Receiver, Sender};
use std::sync::atomic::{AtomicU16, Ordering};
use std::thread;
use zerocopy::{AsBytes, FromBytes, NetworkEndian, Unaligned, U16};
use zerocopy::{FromBytes, Immutable, IntoBytes, NetworkEndian, Unaligned, U16};

trait FieldDataProvider: Send {
fn get_data(&self) -> &[u8];
Expand Down Expand Up @@ -35,7 +35,7 @@ struct ExampleMgmSet {
temperature: u16,
}

#[derive(FromBytes, AsBytes, Unaligned)]
#[derive(FromBytes, IntoBytes, Immutable, Unaligned)]
#[repr(C)]
struct ExampleMgmSetZc {
mgm_vec: [u8; 12],
Expand Down
1 change: 1 addition & 0 deletions satrs-mib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ optional = true
[dependencies.satrs-shared]
version = ">=0.1.3, <=0.2"
features = ["serde"]
path = "../satrs-shared"

[dependencies.satrs-mib-codegen]
path = "codegen"
Expand Down
1 change: 1 addition & 0 deletions satrs-mib/codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ trybuild = { version = "1", features = ["diff"] }

[dev-dependencies.satrs-shared]
version = ">=0.1.3, <=0.2"
path = "../../satrs-shared"

[dev-dependencies.satrs-mib]
path = ".."
6 changes: 3 additions & 3 deletions satrs-minisim/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ edition = "2021"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
log = "0.4"
thiserror = "1"
fern = "0.5"
thiserror = "2"
fern = "0.7"
strum = { version = "0.26", features = ["derive"] }
num_enum = "0.7"
humantime = "2"
Expand All @@ -25,4 +25,4 @@ features = ["serde"]
path = "../satrs"

[dev-dependencies]
delegate = "0.12"
delegate = "0.13"
2 changes: 1 addition & 1 deletion satrs-shared/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ version = "0.3"
optional = true

[dependencies.spacepackets]
version = ">0.9, <=0.12"
version = ">0.9, <=0.13"
default-features = false

[features]
Expand Down
22 changes: 11 additions & 11 deletions satrs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,22 @@ keywords = ["no-std", "space", "aerospace"]
categories = ["aerospace", "aerospace::space-protocols", "no-std", "hardware-support", "embedded"]

[dependencies]
delegate = ">0.7, <=0.10"
delegate = ">0.7, <=0.13"
paste = "1"
derive-new = "0.6"
derive-new = ">=0.6, <=0.7"
smallvec = "1"
crc = "3"

[dependencies.satrs-shared]
version = ">=0.1.3, <=0.2"
path = "../satrs-shared"

[dependencies.num_enum]
version = ">0.5, <=0.7"
default-features = false

[dependencies.spacepackets]
version = "0.12"
version = "0.13"
default-features = false

[dependencies.cobs]
Expand All @@ -45,11 +46,11 @@ version = "1"
optional = true

[dependencies.hashbrown]
version = "0.14"
version = ">=0.14, <=0.15"
optional = true

[dependencies.heapless]
version = "0.7"
version = "0.8"
optional = true

[dependencies.downcast-rs]
Expand All @@ -67,8 +68,8 @@ default-features = false
optional = true

[dependencies.thiserror]
version = "1"
optional = true
version = "2"
default-features = false

[dependencies.serde]
version = "1"
Expand All @@ -81,7 +82,7 @@ features = ["all"]
optional = true

[dependencies.mio]
version = "0.8"
version = "1"
features = ["os-poll", "net"]
optional = true

Expand All @@ -91,7 +92,7 @@ optional = true

[dev-dependencies]
serde = "1"
zerocopy = "0.7"
zerocopy = "0.8"
once_cell = "1"
serde_json = "1"
rand = "0.8"
Expand All @@ -111,7 +112,7 @@ std = [
"serde/std",
"spacepackets/std",
"num_enum/std",
"thiserror",
"thiserror/std",
"socket2",
"mio"
]
Expand All @@ -127,7 +128,6 @@ crossbeam = ["crossbeam-channel"]
heapless = ["dep:heapless"]
defmt = ["dep:defmt", "spacepackets/defmt"]
test_util = []
doc-images = []

[package.metadata.docs.rs]
all-features = true
Expand Down

0 comments on commit 1a4d764

Please sign in to comment.