19 lines
630 B
TOML
19 lines
630 B
TOML
[package]
|
|
name = "fyrox-graph"
|
|
version = "2.0.0-rc.1"
|
|
authors = ["Dmitry Stepanov <d1maxa@yandex.ru>"]
|
|
edition = "2021"
|
|
license = "MIT"
|
|
description = "Graph management crate for the Fyrox engine"
|
|
keywords = ["graph", "prefab"]
|
|
categories = ["game-development"]
|
|
include = ["/src/**/*", "/Cargo.toml", "/LICENSE"]
|
|
homepage = "https://fyrox.rs"
|
|
documentation = "https://docs.rs/fyrox-graph"
|
|
repository = "https://github.com/FyroxEngine/Fyrox"
|
|
rust-version = "1.94"
|
|
|
|
[dependencies]
|
|
fyrox-core = { path = "../fyrox-core", version = "2.0.0-rc.1" }
|
|
fyrox-resource = { path = "../fyrox-resource", version = "2.0.0-rc.1" }
|
|
fxhash = "0.2.1" |