25 lines
722 B
TOML
25 lines
722 B
TOML
[package]
|
|
name = "fyrox-template-core"
|
|
version = "2.0.0-rc.1"
|
|
edition = "2021"
|
|
authors = ["Dmitry Stepanov <d1maxa@yandex.ru>"]
|
|
license = "MIT"
|
|
description = "Project template generator for Fyrox engine"
|
|
keywords = ["fyrox", "game", "project"]
|
|
categories = ["game-development"]
|
|
include = ["/src/**/*", "/Cargo.toml", "/LICENSE", "/README.md", "engine.version", "editor.version", "scripts.version"]
|
|
homepage = "https://fyrox.rs"
|
|
repository = "https://github.com/FyroxEngine/Fyrox"
|
|
readme = "README.md"
|
|
rust-version = "1.94"
|
|
|
|
[dependencies]
|
|
uuid = { version = "1", features = ["v4"] }
|
|
convert_case = "0.8.0"
|
|
toml = "0.9.6"
|
|
toml_edit = "0.23.5"
|
|
regex = "1.7.3"
|
|
unicode-xid = "0.2.6"
|
|
|
|
[build-dependencies]
|
|
toml_edit = "0.23.5" |