Skip to content

Commit

Permalink
Bump versions across multiple Cargo manifests (#330)
Browse files Browse the repository at this point in the history
Doing it anyways.
  • Loading branch information
BanjoFox committed Sep 6, 2024
1 parent e9219ee commit d54c74c
Show file tree
Hide file tree
Showing 8 changed files with 781 additions and 995 deletions.
1,712 changes: 746 additions & 966 deletions Cargo.lock

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,26 +24,26 @@ log-systemd = []

[dependencies]
anyhow = "1.0"
clap = "4.3"
clap-verbosity-flag = "2.0"
clap = "4.5"
clap-verbosity-flag = "2.2"
thiserror = "1.0"
log = "0.4"
# Use simple log files or stdout/stderr. Conflicts with use-systemd and
# log-* features.
simple-logging = { version = "~2.0", optional = true }
# Use syslog for writing logs. Conflicts with use-systemd and log-* features.
syslog = { version = "6.1.0", optional = true }
syslog = { version = "7.0.0", optional = true }
# Integrate with Systemd, includes Journald for logging. Conflicts with log-*
# features.
systemd = { version = "0.10.0", optional = true }

# Locale crate - Putting it here fixes "cannot find function `_rust_i18n_translate` in the crate root"
rust-i18n = "2.1.0" # https://crates.io/crates/rust-i18n
rust-i18n = "3.1.2" # https://crates.io/crates/rust-i18n

[dependencies.aardwolf-actix]
version = "0.1"
path = "aardwolf-actix"
optional = true

[dependencies.config]
version = "0.13"
version = "0.14.0"
14 changes: 7 additions & 7 deletions aardwolf-actix/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@ authors = ["asonix <asonix@asonix.dog>"]
edition = "2021"

[dependencies]
actix = "0.13.0"
actix-files = "0.6"
actix-http = "3.3"
actix-web = "4.3"
config = "0.13"
actix = "0.13.5"
actix-files = "0.6.6"
actix-http = "3.9"
actix-web = "4.9"
config = "0.14.0"
thiserror = "1.0"
log = "0.4"
r2d2 = "0.8"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
uuid = "1.3"
uuid = "1.10"

[dependencies.aardwolf-models]
version = "0.1"
Expand Down Expand Up @@ -45,4 +45,4 @@ default-features = false

[dependencies.futures]
version = "0.3"
features = ["compat"]
features = ["compat"]
2 changes: 1 addition & 1 deletion aardwolf-localization/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
rust-i18n = "3.0.1"
rust-i18n = "3.1.2"
12 changes: 6 additions & 6 deletions aardwolf-models/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ edition = "2021"

[dependencies]
anyhow = "1.0"
bcrypt = "0.15.0"
chrono = "0.4.26"
bcrypt = "0.15.1"
chrono = "0.4.38"
chrono-tz = "0.9.0"
log = "0.4"
mime = "0.3"
Expand All @@ -19,11 +19,11 @@ serde_json = "1.0"
strum = "0.26.3"
strum_macros = "0.26.4"
thiserror = "1.0"
url = "2.1"
url = "2.5"
dotenvy ="0.15"

[dependencies.uuid]
version = "1.3"
version = "1.10"
features = ["v4"]

[features]
Expand All @@ -35,5 +35,5 @@ version = "2.2"
features = ["chrono", "postgres", "serde_json", "uuid"]

[dev-dependencies]
env_logger = "0.11.3"
serde_derive = "1.0"
env_logger = "0.11.5"
serde_derive = "1.0"
10 changes: 8 additions & 2 deletions aardwolf-templates/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build = "build.rs"

[build-dependencies]
config = "0.14.0"
ructe = "0.13"
ructe = "^0.13.4" # Careted to require exactly 0.13 because newer versions break the build.

[dependencies]
gettext = "0.4"
Expand All @@ -30,4 +30,10 @@ path = "../aardwolf-models"
# Start of Yew Migration?
[dependencies.aardwolf-yew-frontend]
version = "0.1.0"
path = "../aardwolf-yew-frontend"
path = "../aardwolf-yew-frontend"

#-
# Adding syn for template compilation
[dependencies.syn]
version = "2.0.77"
features = ["full", "extra-traits"]
6 changes: 3 additions & 3 deletions aardwolf-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,22 @@ with-actix = ["actix-web", "futures", "r2d2"]

[dependencies]
anyhow = "1.0"
derive_builder = "0.20.0"
derive_builder = "0.20.1"
log = "0.4"
openssl = "0.10"
mime = "0.3"
serde = "1.0"
serde_derive = "1.0"
thiserror = "1.0"
url = "2.1"
url = "2.5"
url_serde = "0.2"

[dependencies.aardwolf-models]
version = "0.1"
path = "../aardwolf-models"

[dependencies.actix-web]
version = "4.3"
version = "4.9"
optional = true

[dependencies.diesel]
Expand Down
10 changes: 5 additions & 5 deletions aardwolf-yew-frontend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ edition = "2021"
[dependencies]
yew = { version = "0.21.0", features = ["csr"]}
yew-router = "0.18.0"
wasm-bindgen = "0.2.92" # Easy support for interacting between JS and Rust.
log = {version = "0.4.6", features = ["std", "serde"]} # Also used by main app for logging
wasm-bindgen = "0.2.93" # Easy support for interacting between JS and Rust.
log = {version = "0.4.22", features = ["std", "serde"]} # Also used by main app for logging
wasm-logger = "0.2.0" # Using this instead of Gloo because we already use log
serde = "1.0.164"
serde_json = "1.0.102"
serde = "1.0.209"
serde_json = "1.0.128"

rust-i18n = "3.0.1"
rust-i18n = "3.1.2"

[dependencies.aardwolf-localization]
version = "0.1"
Expand Down

0 comments on commit d54c74c

Please sign in to comment.