Skip to content

Commit

Permalink
fix deps
Browse files Browse the repository at this point in the history
  • Loading branch information
rfuzzo committed Mar 8, 2024
1 parent 3ced7cc commit a18ca84
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 25 deletions.
9 changes: 1 addition & 8 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ members = ["cli", "gui", "lib"]
resolver = "2"

[workspace.dependencies]
clap = { version = "4.1", features = ["derive"] }
toposort-scc = "0.5"
byteorder = "1.5"
rust-ini = "0.20"
Expand Down
12 changes: 1 addition & 11 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,9 @@ edition = "2021"
[dependencies]
plox_lib = { path = "../lib" }


clap = { version = "4.1", features = ["derive"] }

reqwest = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
toposort-scc = { workspace = true }
byteorder = { workspace = true }
rust-ini = { workspace = true }
log = { workspace = true }
env_logger = { workspace = true }
regex = { workspace = true }
openmw-cfg = { workspace = true } # move to feature flag
clap = { workspace = true }


# standard crate data is left out
Expand Down
10 changes: 6 additions & 4 deletions gui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,22 @@ authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
edition = "2021"

[dependencies]
plox_lib = { path = "../lib" }

egui = "0.26.0"
eframe = { version = "0.26.0", default-features = false, features = [
"default_fonts", # Embed the default egui fonts.
"glow", # Use the glow rendering backend. Alternative: "wgpu".
"persistence", # Enable restoring app state when restarting the app.
] }
log = "0.4"

# You only need serde if you want app persistence:
serde = { version = "1", features = ["derive"] }

log = { workspace = true }
serde = { workspace = true }

# native:
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
env_logger = "0.11"
env_logger = { workspace = true }

# web:
[target.'cfg(target_arch = "wasm32")'.dependencies]
Expand Down
3 changes: 1 addition & 2 deletions lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
clap = { version = "4.1", features = ["derive"] }

clap = { workspace = true }
reqwest = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
Expand Down

0 comments on commit a18ca84

Please sign in to comment.