-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (31 loc) · 969 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 = "godot-rs-config"
version = "0.1.2"
edition = "2021"
license = "MIT"
authors = ["Allan Davis<cajun.code@gmail.com>"]
description = "Command line tool to generate Godot Extention config"
homepage = "https://github.com/cajun-code/godot-rs-config"
repository = "https://github.com/cajun-code/godot-rs-config"
readme = "README.md"
keywords = ["gamedev", "godot", "cli"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name="godot-config"
path="src/main.rs"
# [[test]]
# name = "cuke"
# harness = false
[dependencies]
anyhow = "1.0.75"
cargo-generate = "0.18.4"
clap = { version = "4.3.24", features = ["derive"] }
convert_case = "0.6.0"
reqwest = { version = "0.11.22", features = ["json"] }
tera = "1.19.1"
tokio = { version = "1.33.0", features = ["test-util", "macros", "rt-multi-thread"] }
[dev-dependencies]
assert_cmd = "2.0.12"
assert_fs = "1.0.13"
cucumber = "0.20.0"
futures = "0.3.28"