Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
Bwc9876 committed Aug 9, 2023
2 parents e6507f6 + ebea08e commit a1f5e16
Show file tree
Hide file tree
Showing 5 changed files with 226 additions and 222 deletions.
83 changes: 43 additions & 40 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions owmods_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "owmods_cli"
authors = ["Bwc9876 <[email protected]>"]
description = "A CLI Tool To Manage OWML Mods"
version = "0.10.1"
version = "0.11.0"
edition = "2021"
readme = "./README.md"
repository = "https://github.com/ow-mods/ow-mod-man/"
Expand All @@ -12,7 +12,7 @@ license = "GPL-3.0-or-later"
depends = "libssl1.1"

[dependencies]
owmods_core = { version = "0.10.0", path = "../owmods_core"}
owmods_core = { version = "0.11.0", path = "../owmods_core" }
clap = { version = "4.3.21", features = ["derive"] }
colored = "2.0.4"
anyhow = "1.0.72"
Expand Down
13 changes: 10 additions & 3 deletions owmods_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "owmods_core"
authors = ["Bwc9876 <[email protected]>"]
description = "The core library for the Outer Wilds Mod Manager"
version = "0.10.1"
version = "0.11.0"
edition = "2021"
readme = "./README.md"
license = "GPL-3.0-or-later"
Expand All @@ -15,11 +15,18 @@ serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
opener = "0.6.1"
directories = "5.0.1"
reqwest = { version = "0.11.18", default-features = false, features = ["blocking", "json", "rustls-tls"] }
reqwest = { version = "0.11.18", default-features = false, features = [
"blocking",
"json",
"rustls-tls",
] }
glob = "0.3.1"
version-compare = "0.1.1"
anyhow = "1.0.72"
zip = { version = "0.6.6", default-features = false, features = ["deflate", "zstd"] }
zip = { version = "0.6.6", default-features = false, features = [
"deflate",
"zstd",
] }
futures = "0.3.28"
log = "0.4.19"
tokio = { version = "1.29.1", features = ["net", "time", "process", "macros"] }
Expand Down
4 changes: 2 additions & 2 deletions owmods_gui/backend/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "owmods_gui"
version = "0.10.1"
version = "0.11.0"
license = "GPL-3.0-or-later"
edition = "2021"

[build-dependencies]
tauri-build = { version = "1.4.0", features = [] }

[dependencies]
owmods_core = { version = "0.10.1", path = "../../owmods_core" }
owmods_core = { version = "0.11.0", path = "../../owmods_core" }
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
tauri = { version = "1.4.1", features = [
Expand Down
Loading

0 comments on commit a1f5e16

Please sign in to comment.