-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
35 lines (33 loc) · 972 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "cargo-geng"
authors = ["kuviman <[email protected]>"]
categories = ["game-engines"]
description = "geng cargo helper"
edition = "2021"
homepage = "https://geng.kuviman.com"
keywords = ["game", "engine", "gamedev", "geng"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/geng-engine/cargo-geng"
version = "0.16.0"
[features]
default = []
wast-opt = ["dep:wasm-opt"]
[dependencies]
open = "5"
tokio = { version = "1", features = ["rt-multi-thread", "full"] }
hyper = { version = "0.14", features = ["server", "http1", "tcp"] }
hyper-staticfile = "0.9"
fs_extra = "1"
cargo_metadata = "0.18"
futures = "0.3"
clap = { version = "4", features = ["derive"] }
anyhow = { version = "1", features = ["backtrace"] }
wasm-bindgen-cli-support = "0.2"
wasm-opt = { version = "0.116", optional = true }
serde = "1"
serde_json = "1"
itertools = "0.11.0"
strum = { version = "0.25.0", features = ["derive"] }
log = "0.4.20"
env_logger = "0.10.0"