16 lines
279 B
TOML
16 lines
279 B
TOML
[package]
|
|
name = "skullball"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"] # Compile this crate to a dynamic C library.
|
|
|
|
[dependencies]
|
|
ciborium = "0.2.2"
|
|
flate2 = "1.1.9"
|
|
godot = "0.5.4"
|
|
serde = "1.0.228"
|
|
teanet = { path = "../teanet-rust" }
|
|
toml = "1.1.3"
|