sunflower/Cargo.toml
Julius 25a9a772e6
Add custom types. Make an attempt at method calls.
You just need to implement `CustomValue`, `Debug` and `Clone`
for your own types, and the type can be used in your code.

Next on the list: method calls (e.g. x.y(), instead of y(x))
2022-07-03 20:32:31 +02:00

13 lines
236 B
TOML

[package]
name = "sunflower"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dyn-clone = "1.0.6"
pest = "2.1.3"
pest_derive = "2.1.0"