forked from TheBevyFlock/bevy_cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (38 loc) · 1.08 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
[workspace]
members = ["bevy_lint"]
[package]
name = "bevy_cli"
version = "0.1.0-dev"
edition = "2021"
license = "MIT OR Apache-2.0"
# When no binary is specific, run the main CLI by default.
default-run = "bevy"
# The main CLI executable
[[bin]]
name = "bevy"
path = "src/bin/main.rs"
[dependencies]
# CLI argument parsing
clap = { version = "4.5.16", features = ["derive"] }
# Easy error propagation and contexts
anyhow = "1.0.86"
# Generates new Bevy projects from templates
cargo-generate = "0.22"
# Better CLI user input
dialoguer = { version = "0.11.0", default-features = false }
# API interaction
serde = { features = ["derive"], version = "1.0.210" }
serde_json = "1.0.128"
reqwest = { features = ["blocking", "json"], version = "0.12.7" }
regex = "1.10.6"
# Understanding Cargo.toml
toml_edit = { version = "0.22.21", default-features = false, features = [
"parse",
] }
# Understanding package versions
semver = { version = "1.0.23", features = ["serde"] }
# Serving the app for the browser
actix-files = "0.6.6"
actix-web = "4.9.0"
# Opening the app in the browser
webbrowser = "1.0.2"