diff --git a/Cargo.toml b/Cargo.toml index 96d20ea..ec503d5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,20 +31,20 @@ archimedes_crontab_types = { path = "./crates/crontab_types" , version = "0.4.0" archimedes_crontab_parser = { path = "./crates/crontab_parser" , version = "0.4.2" } archimedes_migrations = { path = "./crates/migrations" , version = "0.2.4" } archimedes_shutdown_signal = { path = "./crates/shutdown_signal" , version = "0.2.4" } -chrono = { version = "0.4.24", features = ["serde"] } -futures = "0.3.28" +chrono = { version = "0.4.31", features = ["serde"] } +futures = "0.3.29" getset = "0.1.2" -num_cpus = "1.15.0" -serde = { version = "1.0.160", features = ["derive"] } -serde_json = "1.0.96" -sqlx = { version = "0.6.3", features = ["postgres", "json", "chrono"] } -thiserror = "1.0.40" -tracing = "0.1.38" -tokio = { version = "1.28.0", features = ["macros", "signal"], optional = true } +num_cpus = "1.16.0" +serde = { version = "1.0.192", features = ["derive"] } +serde_json = "1.0.108" +sqlx = { version = "0.7.2", features = ["postgres", "json", "chrono"] } +thiserror = "1.0.50" +tracing = "0.1.40" +tokio = { version = "1.34.0", features = ["macros", "signal"], optional = true } rand = "0.8.5" hex = "0.4.3" cfg-if = "1.0.0" [dev-dependencies] -tokio = { version = "1.28.0", features = ["macros"] } -tracing-subscriber = { version = "0.3.17", features = ["env-filter"] } +tokio = { version = "1.34.0", features = ["macros"] } +tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } diff --git a/crates/crontab_parser/Cargo.toml b/crates/crontab_parser/Cargo.toml index 5b4c18d..893844b 100644 --- a/crates/crontab_parser/Cargo.toml +++ b/crates/crontab_parser/Cargo.toml @@ -15,7 +15,7 @@ readme = "README.md" archimedes_crontab_types = { path = "../crontab_types" , version = "0.4.0" } json5 = "0.4.1" nom = "7.1.3" -serde = { version = "1.0.160", features = ["derive"] } -serde_json = "1.0.96" +serde = { version = "1.0.192", features = ["derive"] } +serde_json = "1.0.108" serde_qs = "0.12.0" -thiserror = "1.0.40" +thiserror = "1.0.50" diff --git a/crates/crontab_runner/Cargo.toml b/crates/crontab_runner/Cargo.toml index 9439c1d..3a406da 100644 --- a/crates/crontab_runner/Cargo.toml +++ b/crates/crontab_runner/Cargo.toml @@ -19,12 +19,12 @@ runtime-tokio-native-tls = ["sqlx/runtime-tokio-native-tls", "tokio"] [dependencies] archimedes_crontab_types = { path = "../crontab_types" , version = "0.4.0" } archimedes_shutdown_signal = { path = "../shutdown_signal" , version = "0.2.4" } -chrono = { version = "0.4.24", features = ["serde"] } -sqlx = { version = "0.6.3", features = ["chrono", "postgres", "json"] } -thiserror = "1.0.40" -serde = { version = "1.0.160", features = ["derive"] } -serde_json = "1.0.96" +chrono = { version = "0.4.31", features = ["serde"] } +sqlx = { version = "0.7.2", features = ["chrono", "postgres", "json"] } +thiserror = "1.0.50" +serde = { version = "1.0.192", features = ["derive"] } +serde_json = "1.0.108" getset = "0.1.2" -tracing = "0.1.38" -once_cell = "1.17.1" -tokio = { version = "1.28.0", features = ["time"], optional = true } +tracing = "0.1.40" +once_cell = "1.18.0" +tokio = { version = "1.34.0", features = ["time"], optional = true } diff --git a/crates/crontab_types/Cargo.toml b/crates/crontab_types/Cargo.toml index 9dae6fb..bc08627 100644 --- a/crates/crontab_types/Cargo.toml +++ b/crates/crontab_types/Cargo.toml @@ -14,9 +14,9 @@ readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -chrono = "0.4.24" +chrono = "0.4.31" getset = "0.1.2" -serde_json = "1.0.96" +serde_json = "1.0.108" [dev-dependencies] -anyhow = "1.0.70" +anyhow = "1.0.75" diff --git a/crates/migrations/Cargo.toml b/crates/migrations/Cargo.toml index 4053a50..caa253b 100644 --- a/crates/migrations/Cargo.toml +++ b/crates/migrations/Cargo.toml @@ -17,8 +17,8 @@ runtime-tokio-rustls = ["sqlx/runtime-tokio-rustls"] runtime-tokio-native-tls = ["sqlx/runtime-tokio-native-tls"] [dependencies] -sqlx = { version = "0.6.3", features = ["postgres"] } -tracing = "0.1.38" +sqlx = { version = "0.7.2", features = ["postgres"] } +tracing = "0.1.40" [dev-dependencies] -tokio = "1.28.0" +tokio = "1.34.0" diff --git a/crates/shutdown_signal/Cargo.toml b/crates/shutdown_signal/Cargo.toml index cd6e650..a6ae62e 100644 --- a/crates/shutdown_signal/Cargo.toml +++ b/crates/shutdown_signal/Cargo.toml @@ -12,6 +12,6 @@ repository = "https://github.com/leo91000/archimedes/crates/shutdown_signal" [dependencies] cfg-if = "1.0.0" -futures = "0.3.28" -tokio = { version = "1.28.0", features = ["signal", "macros"] } -tracing = "0.1.38" +futures = "0.3.29" +tokio = { version = "1.34.0", features = ["signal", "macros"] } +tracing = "0.1.40" diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index df41ff0..7c7bcbd 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -7,16 +7,16 @@ description = "Archimedes helper tasks CLI" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -anyhow = "1.0.70" -chrono = "0.4.24" -clap = { version = "4.2.5", features = ["derive"] } +anyhow = "1.0.75" +chrono = "0.4.31" +clap = { version = "4.4.8", features = ["derive"] } derive_more = "0.99.17" glob = "0.3.1" -itertools = "0.10.5" -once_cell = "1.17.1" -percent-encoding = "2.2.0" -regex = "1.8.1" -serde = { version = "1.0.160", features = ["derive"] } +itertools = "0.12.0" +once_cell = "1.18.0" +percent-encoding = "2.3.0" +regex = "1.10.2" +serde = { version = "1.0.192", features = ["derive"] } structstruck = "0.4.1" -toml = "0.7.3" -toml_edit = { version = "0.19.8", features = ["serde"] } +toml = "0.8.8" +toml_edit = { version = "0.21.0", features = ["serde"] }