-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Some additional changes to prepare the crate for publication on crates.io * Rename crate to `hextile` * Fix wildcard dependencies and bump version * Remove unused imports * Bump version 0.1.2
- Loading branch information
1 parent
2cfb884
commit 4366136
Showing
2 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "hexmap" | ||
version = "0.1.1" | ||
name = "hextile" | ||
version = "0.1.2" | ||
edition = "2021" | ||
authors = ["Fernando A. Fraticelli <[email protected]>"] | ||
description = "Handles coordinate math and other logic for hexagonal game maps" | ||
|
@@ -13,8 +13,8 @@ categories = ["data-structures", "game-development"] | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
lerp = { version="*" } | ||
serde = { version="*", features=["derive"] } | ||
lerp = { version="0.5" } | ||
serde = { version="1", features=["derive"] } | ||
bevy = { version="0.11", optional=true } | ||
|
||
[features] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters