Skip to content

Commit

Permalink
Compilation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
markusmoenig committed Oct 5, 2024
1 parent b822c7f commit 8934292
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 19 deletions.
2 changes: 2 additions & 0 deletions Cargo.lock

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

14 changes: 7 additions & 7 deletions creator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ name = "eldiron"
path = "src/main.rs"

[dependencies]
theframework = { path = "../../TheFramework", features = ["ui", "code"] }
# theframework = { git = "https://github.com/markusmoenig/TheFramework", features = [
# "ui",
# "code",
# ], default-features = true }
# theframework = { path = "../../TheFramework", features = ["ui", "code"] }
theframework = { git = "https://github.com/markusmoenig/TheFramework", features = [
"ui",
"code",
], default-features = true }
# theframework = { version = "0.1.20", features = [
# "ui",
# "code",
# ], default-features = true }
forgedtiles = { path = "../../ForgedTiles/forgedtiles" }
# forgedtiles = { git = "https://github.com/markusmoenig/ForgedTiles" }
# forgedtiles = { path = "../../ForgedTiles/forgedtiles" }
forgedtiles = { git = "https://github.com/markusmoenig/ForgedTiles" }
shared = { path = "../shared" }
lazy_static = "1.4.0"
serde = { version = "1.0", features = ["derive"] }
Expand Down
14 changes: 7 additions & 7 deletions shared/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ version = "0.8.12"
edition = "2021"

[dependencies]
theframework = { path = "../../TheFramework", features = ["ui", "code"] }
# theframework = { git = "https://github.com/markusmoenig/TheFramework", features = [
# "ui",
# "code",
# ], default-features = true}
# theframework = { path = "../../TheFramework", features = ["ui", "code"] }
theframework = { git = "https://github.com/markusmoenig/TheFramework", features = [
"ui",
"code",
], default-features = true }
# theframework = { version = "0.1.20", features = [
# "ui",
# "code",
# ], default-features = true }
forgedtiles = { path = "../../ForgedTiles/forgedtiles" }
# forgedtiles = { git = "https://github.com/markusmoenig/ForgedTiles" }
# forgedtiles = { path = "../../ForgedTiles/forgedtiles" }
forgedtiles = { git = "https://github.com/markusmoenig/ForgedTiles" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
vectorize = "0.2.0"
Expand Down
10 changes: 5 additions & 5 deletions solo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ authors = ["Markus Moenig"]
description = "A game creator for retro RPGs."

[dependencies]
theframework = { path = "../../TheFramework", features = ["ui", "code"] }
# theframework = { git = "https://github.com/markusmoenig/TheFramework", features = [
# "ui",
# "code",
# ], default-features = true}
# theframework = { path = "../../TheFramework", features = ["ui", "code"] }
theframework = { git = "https://github.com/markusmoenig/TheFramework", features = [
"ui",
"code",
], default-features = true }
# theframework = { version = "0.1.20", features = [
# "ui",
# "code",
Expand Down

0 comments on commit 8934292

Please sign in to comment.