28 lines
739 B
TOML
28 lines
739 B
TOML
|
[package]
|
||
|
name = "galactica-system"
|
||
|
description = "Galactica's star system simulations"
|
||
|
categories = { workspace = true }
|
||
|
keywords = { workspace = true }
|
||
|
version = { workspace = true }
|
||
|
rust-version = { workspace = true }
|
||
|
authors = { workspace = true }
|
||
|
edition = { workspace = true }
|
||
|
homepage = { workspace = true }
|
||
|
repository = { workspace = true }
|
||
|
license = { workspace = true }
|
||
|
documentation = { workspace = true }
|
||
|
readme = { workspace = true }
|
||
|
|
||
|
[lints]
|
||
|
workspace = true
|
||
|
|
||
|
[dependencies]
|
||
|
galactica-content = { workspace = true }
|
||
|
galactica-util = { workspace = true }
|
||
|
galactica-playeragent = { workspace = true }
|
||
|
|
||
|
rapier2d = { workspace = true }
|
||
|
nalgebra = { workspace = true }
|
||
|
crossbeam = { workspace = true }
|
||
|
rand = { workspace = true }
|