Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,299 changes: 755 additions & 544 deletions Cargo.lock

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@ resolver = "3"
members = ["barto", "barto-cli", "bartoc", "bartos", "libbarto"]

[workspace.dependencies]
actix-web = "4.12.1"
anyhow = "1.0.100"
actix-web = "4.13.0"
anyhow = "1.0.102"
bincode = "=2.0.1"
bon = "3.8.1"
bytes = "1.11.0"
clap = { version = "4.5.54", features = ["derive"] }
bon = "3.9.0"
bytes = "1.11.1"
clap = { version = "4.5.60", features = ["derive"] }
config = { version = "0.15.19", features = ["toml"] }
dirs2 = "3.0.1"
futures-util = { version = "0.3.31", default-features = false, features = [
futures-util = { version = "0.3.32", default-features = false, features = [
"std",
] }
getset = "0.1.6"
redb = "3.1.0"
rustls = { version = "0.23.36" }
rustls = { version = "0.23.37" }
rustversion = "1.0.22"
serde = { version = "1.0.228", features = ["derive"] }
sqlx = { version = "0.8.6", features = [
Expand All @@ -27,9 +27,9 @@ sqlx = { version = "0.8.6", features = [
"tls-rustls-aws-lc-rs",
"uuid",
] }
sysinfo = { version = "0.37.2", features = ["serde", "windows"] }
thiserror = "2.0.17"
time = "0.3.44"
sysinfo = { version = "0.38.2", features = ["serde", "windows"] }
thiserror = "2.0.18"
time = "0.3.47"
tokio = { version = "1.49.0", features = ["macros", "rt-multi-thread"] }
tokio-tungstenite = { version = "0.28.0", features = [
"rustls-tls-webpki-roots",
Expand All @@ -40,7 +40,7 @@ tracing = { version = "0.1.44", features = [
"release_max_level_trace",
] }
tracing-subscriber-init = { version = "0.2.3", features = ["tstime"] }
uuid = { version = "1.19.0", features = ["v4"] }
uuid = { version = "1.21.0", features = ["v4"] }
vergen-gix = { version = "10.0.0-beta.5", features = [
"build",
"cargo",
Expand Down
2 changes: 1 addition & 1 deletion barto-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ bincode = { workspace = true }
bon = { workspace = true }
clap = { workspace = true }
config = { workspace = true }
console = "0.16.1"
console = "0.16.2"
count-digits = "0.5.1"
futures-util = { workspace = true }
getset = { workspace = true }
Expand Down
6 changes: 3 additions & 3 deletions barto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ bon = { workspace = true }
clap = { workspace = true }
config = { workspace = true }
getset = { workspace = true }
iced = { version = "0.13.1", features = ["tokio"] }
iced_aw = "0.12.2"
iced_fonts = { version = "0.2.1", features = ["full"] }
iced = { version = "=0.13.1", features = ["tokio"] }
iced_aw = "=0.12.2"
iced_fonts = { version = "=0.2.1", features = ["full"] }
libbarto = { version = "1.0.0", path = "../libbarto" }
serde = { workspace = true }
sqlx = { workspace = true, features = ["uuid"] }
Expand Down
6 changes: 3 additions & 3 deletions bartos/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ unstable = ["libbarto/unstable"]

[dependencies]
actix-web = { workspace = true, features = ["rustls-0_23"] }
actix-ws = "0.3.0"
actix-ws = "0.4.0"
anyhow = { workspace = true }
bincode = { workspace = true }
bon = { workspace = true }
Expand All @@ -27,10 +27,10 @@ config = { workspace = true }
futures-util = { workspace = true }
getset = { workspace = true }
libbarto = { version = "1.0.0", path = "../libbarto" }
regex = "1.12.2"
regex = "1.12.3"
rustls = { workspace = true }
serde = { workspace = true }
serde_json = "1.0.145"
serde_json = "1.0.149"
sqlx = { workspace = true, features = [ "uuid" ] }
thiserror = { workspace = true }
time = { workspace = true, features = ["local-offset", "macros"] }
Expand Down
14 changes: 7 additions & 7 deletions libbarto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ bon = { workspace = true }
bytes = { workspace = true }
clap = { workspace = true }
config = { workspace = true }
console = "0.16.1"
console = "0.16.2"
dirs2 = { workspace = true }
getset = { workspace = true }
num-traits = "0.2.19"
rand = "0.9.2"
rand = "0.10.0"
redb = { workspace = true }
regex = "1.12.2"
regex = "1.12.3"
rustls = { workspace = true }
serde = { workspace = true }
strip-ansi-escapes = "0.2.1"
Expand All @@ -42,7 +42,7 @@ time = { workspace = true, features = [
"serde-human-readable",
] }
tracing = { workspace = true }
tracing-appender = "0.2.3"
tracing-appender = "0.2.4"
tracing-subscriber = { version = "=0.3.19", features = ["env-filter", "fmt", "time"] }
tracing-subscriber-init = { workspace = true }
unicode-width = "0.2.2"
Expand All @@ -58,9 +58,9 @@ vergen-gix = { workspace = true }
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage,coverage_nightly)'] }

[dev-dependencies]
proptest = "1.9.0"
rand = "0.9.2"
tempfile = "3.23.0"
proptest = "1.10.0"
rand = "0.10.0"
tempfile = "3.26.0"

[package.metadata.docs.rs]
all-features = true
Expand Down
2 changes: 1 addition & 1 deletion libbarto/src/header.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
use crate::TracingConfigExt;
use anyhow::Result;
use console::Style;
use rand::Rng;
use rand::RngExt as _;
use std::io::Write;
use tracing::Level;
use vergen_pretty::{Prefix, Pretty, vergen_pretty_env};
Expand Down
4 changes: 2 additions & 2 deletions libbarto/src/realtime/hms/hour.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use std::{

use anyhow::{Error, Result};
use num_traits::{Bounded, FromPrimitive, One, ToPrimitive, Zero};
use rand::{Rng as _, rng};
use rand::{RngExt as _, rng};
use regex::Regex;

use crate::{
Expand Down Expand Up @@ -272,7 +272,7 @@ pub(crate) mod test {
prelude::{any, proptest},
prop_assume, prop_compose,
};
use rand::{Rng as _, rng};
use rand::{RngExt as _, rng};
use regex::Regex;

use crate::realtime::cv::ConstrainedValueMatcher as _;
Expand Down
4 changes: 2 additions & 2 deletions libbarto/src/realtime/hms/minute.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use std::{

use anyhow::{Error, Result};
use num_traits::{Bounded, FromPrimitive, One, ToPrimitive, Zero};
use rand::{Rng as _, rng};
use rand::{RngExt as _, rng};
use regex::Regex;

use crate::{
Expand Down Expand Up @@ -273,7 +273,7 @@ pub(crate) mod test {
prelude::{any, proptest},
prop_assume, prop_compose,
};
use rand::{Rng as _, rng};
use rand::{RngExt as _, rng};

use crate::realtime::cv::ConstrainedValueMatcher as _;

Expand Down
4 changes: 2 additions & 2 deletions libbarto/src/realtime/hms/second.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use std::{

use anyhow::{Error, Result};
use num_traits::{Bounded, FromPrimitive, One, ToPrimitive, Zero};
use rand::{Rng as _, rng};
use rand::{RngExt as _, rng};
use regex::Regex;

use crate::{
Expand Down Expand Up @@ -273,7 +273,7 @@ pub(crate) mod test {
prelude::{any, proptest},
prop_assume, prop_compose,
};
use rand::{Rng as _, rng};
use rand::{RngExt as _, rng};

use crate::realtime::cv::ConstrainedValueMatcher as _;

Expand Down
4 changes: 2 additions & 2 deletions libbarto/src/realtime/ymd/day.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use std::{

use anyhow::{Error, Result};
use num_traits::{Bounded, FromPrimitive, One, ToPrimitive, Zero};
use rand::{Rng as _, rng};
use rand::{RngExt as _, rng};
use regex::Regex;

use crate::{
Expand Down Expand Up @@ -268,7 +268,7 @@ pub(crate) mod test {
prelude::{any, proptest},
prop_assume, prop_compose,
};
use rand::{Rng as _, rng};
use rand::{RngExt as _, rng};
use regex::Regex;

pub(crate) static VALID_DAY_RE: LazyLock<Regex> =
Expand Down
4 changes: 2 additions & 2 deletions libbarto/src/realtime/ymd/month.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use std::{

use anyhow::{Error, Result};
use num_traits::{Bounded, FromPrimitive, One, ToPrimitive, Zero};
use rand::{Rng as _, rng};
use rand::{RngExt as _, rng};
use regex::Regex;

use crate::{
Expand Down Expand Up @@ -286,7 +286,7 @@ pub(crate) mod tests {
prelude::{any, proptest},
prop_assume, prop_compose,
};
use rand::{Rng as _, rng};
use rand::{RngExt as _, rng};
use regex::Regex;

use crate::realtime::cv::ConstrainedValueMatcher as _;
Expand Down
2 changes: 1 addition & 1 deletion libbarto/src/realtime/ymd/year.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ pub(crate) mod test {
prelude::{any, proptest},
prop_assume, prop_compose,
};
use rand::{Rng as _, rng};
use rand::{RngExt as _, rng};
use regex::Regex;

use crate::realtime::cv::{ConstrainedValueMatcher as _, ConstrainedValueParser};
Expand Down