labast/Cargo.toml

23 lines
373 B
TOML
Raw Normal View History

2024-02-05 07:05:48 +00:00
[package]
name = "labast"
2024-02-10 13:45:11 +00:00
version = "1.0.6"
2024-02-05 07:05:48 +00:00
authors = [ "n3tael" ]
edition = "2021"
description = "A Labaski interpreter written in Rust."
2024-02-05 07:05:48 +00:00
readme = "README.md"
2024-02-10 13:45:11 +00:00
license = "apache-2.0"
2024-02-05 07:05:48 +00:00
publish = false
[profile.dev]
overflow-checks = false
2024-02-05 12:13:44 +00:00
[profile.release]
strip = true
lto = true
panic = "abort"
2024-02-05 07:05:48 +00:00
[dependencies]
fastrand = "2.0.1"
2024-06-16 23:14:13 +00:00
libloading = "0.8.1"
pico-args = "0.5.0"