Skip to content

Commit

Permalink
cargo update
Browse files Browse the repository at this point in the history
  • Loading branch information
o2sh committed Mar 24, 2021
1 parent 8a5e212 commit fdcb6cf
Show file tree
Hide file tree
Showing 7 changed files with 160 additions and 139 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

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

28 changes: 14 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
[package]
name = "teki"
version = "0.4.0"
description = "Touhou-style shoot'em up"
authors = ["o2sh <[email protected]>"]
description = "Touhou-style shoot'em up"
edition = "2018"
license = "GPL-3.0-or-later"
name = "teki"
readme = "README.md"
license = "MIT"
repository = "https://github.com/o2sh/teki"
version = "0.4.0"

[dependencies]
clap = "2.33.3"
vector2d = "2.2.0"
lazy_static = "1.4.0"
counted-array = "0.1.2"
lazy_static = "1.4.0"
vector2d = "2.2.0"

teki-ecs = {path = "./ecs" }
teki-common = {path = "./common" }
teki-common = {path = "./common"}
teki-ecs = {path = "./ecs"}

[dependencies.sdl2]
version = "0.34.3"
default-features = false
features = ["image","unsafe_textures", "mixer", "ttf"]
features = ["image", "unsafe_textures", "mixer", "ttf"]
version = "0.34.3"

[workspace]
members = [
"ecs",
"wasm",
"common"
]
"ecs",
"wasm",
"common",
]
12 changes: 6 additions & 6 deletions common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "teki-common"
version = "0.4.0"
authors = ["o2sh <[email protected]>"]
edition = "2018"
name = "teki-common"
version = "0.4.0"

[dependencies]
vector2d = "2.2.0"
array-macro = "1.0.5"
bitflags = "1.2.1"
regex = "1.3.4"
serde_json = "1.0"
counted-array = "0.1.2"
lazy_static = "1.4.0"
array-macro = "1.0.5"
regex = "1.3.4"
serde_json = "1.0"
vector2d = "2.2.0"
10 changes: 5 additions & 5 deletions docs/0.bootstrap.js

Large diffs are not rendered by default.

227 changes: 124 additions & 103 deletions docs/bootstrap.js

Large diffs are not rendered by default.

Binary file not shown.
14 changes: 7 additions & 7 deletions ecs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "teki-ecs"
version = "0.4.0"
authors = ["o2sh <[email protected]>"]
edition = "2018"
name = "teki-ecs"
version = "0.4.0"

[dependencies]
legion = { version = "0.3.1", default-features = false, features = ["codegen"] }
vector2d = "2.2.0"
lazy_static = "1.4.0"
rand = {version = "0.7", features = ["wasm-bindgen"] }
legion = {version = "0.3.1", default-features = false, features = ["codegen"]}
rand = {version = "0.7", features = ["wasm-bindgen"]}
vector2d = "2.2.0"

teki-common = {path = "../common" }
teki-common = {path = "../common"}

[features]
wasm = ["legion/wasm-bindgen"]
wasm = ["legion/wasm-bindgen"]

0 comments on commit fdcb6cf

Please sign in to comment.