-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCargo.toml
36 lines (35 loc) · 945 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
36
[package]
name = "cargo-screeps"
version = "0.5.2"
edition = "2021"
authors = ["David Ross <[email protected]>"]
documentation = "https://github.com/rustyscreeps/cargo-screeps/"
include = [
"Cargo.toml",
"src/**/*",
"tests/**/*",
"examples/**/*",
"resources/**/*",
"LICENSE",
"README.md",
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/rustyscreeps/cargo-screeps/"
description = "Build tool for deploying Rust WASM code to Screeps game servers"
[dependencies]
anyhow = "1"
base64 = "0.21"
clap = { version = "4", features = ["cargo"] }
fern = "0.6"
log = "0.4"
merge = "0.1"
pathdiff = "0.2"
regex = "1.7"
reqwest = { version = "0.11", default-features = false, features = ["blocking", "json", "rustls-tls"]}
serde = { version = "1", features = ["derive"] }
serde_ignored = "0.1"
serde_json = "1"
structopt = "0.3"
toml = "0.8"
wasm-pack = { version = "0.12", default-features = false }