2023-02-06 00:13:58 +00:00
|
|
|
[workspace]
|
|
|
|
|
|
|
|
members = ["packages/cli", "packages/lib"]
|
|
|
|
default-members = ["packages/cli"]
|
|
|
|
|
|
|
|
[workspace.package]
|
2023-02-11 22:39:59 +00:00
|
|
|
version = "0.4.0"
|
2023-01-19 01:47:14 +00:00
|
|
|
edition = "2021"
|
2023-01-25 01:36:59 +00:00
|
|
|
license = "MPL-2.0"
|
2023-01-19 02:19:10 +00:00
|
|
|
repository = "https://github.com/filiptibell/lune"
|
|
|
|
description = "A Luau script runner"
|
2023-02-06 00:13:58 +00:00
|
|
|
readme = "README.md"
|
2023-01-19 02:19:10 +00:00
|
|
|
keywords = ["cli", "lua", "luau", "scripts"]
|
|
|
|
categories = ["command-line-interface"]
|
2023-01-19 01:47:14 +00:00
|
|
|
|
2023-01-19 20:10:34 +00:00
|
|
|
[profile.release]
|
|
|
|
strip = true # Automatically strip symbols from the binary.
|
|
|
|
opt-level = "z" # Optimize for size.
|
|
|
|
lto = true # Enable link-time optimization
|
|
|
|
panic = "abort" # Remove extra panic info
|
|
|
|
|
2023-02-06 00:13:58 +00:00
|
|
|
[workspace.dependencies]
|
2023-01-23 02:46:30 +00:00
|
|
|
|
2023-02-09 22:07:30 +00:00
|
|
|
console = "0.15.5"
|
|
|
|
lazy_static = "1.4.0"
|
2023-01-23 02:14:13 +00:00
|
|
|
serde_json = "1.0.91"
|
2023-01-23 02:46:30 +00:00
|
|
|
|
|
|
|
serde = { version = "1.0.152", features = ["derive"] }
|
2023-02-03 19:15:20 +00:00
|
|
|
tokio = { version = "1.24.2", features = ["full"] }
|
2023-02-03 19:40:06 +00:00
|
|
|
|
2023-02-06 00:13:58 +00:00
|
|
|
[workspace.dependencies.reqwest]
|
2023-02-04 00:30:15 +00:00
|
|
|
version = "0.11.14"
|
|
|
|
default-features = false
|
|
|
|
features = ["rustls-tls"]
|