18 lines
629 B
TOML
18 lines
629 B
TOML
[package]
|
|
name = "fyrox-template"
|
|
version = "2.0.0-rc.1"
|
|
edition = "2021"
|
|
authors = ["Dmitry Stepanov <d1maxa@yandex.ru>"]
|
|
license = "MIT"
|
|
description = "Command line interface for project template generator for Fyrox engine"
|
|
keywords = ["fyrox", "game", "project"]
|
|
categories = ["game-development"]
|
|
include = ["/src/**/*", "/Cargo.toml", "/LICENSE", "/README.md"]
|
|
homepage = "https://fyrox.rs"
|
|
repository = "https://github.com/FyroxEngine/Fyrox"
|
|
readme = "README.md"
|
|
rust-version = "1.94"
|
|
|
|
[dependencies]
|
|
fyrox-template-core = { version = "2.0.0-rc.1", path = "../template-core" }
|
|
clap = { version = "4", features = ["derive"] } |