2023-01-19 01:47:14 +00:00
|
|
|
[package]
|
|
|
|
name = "lune"
|
2023-01-25 20:58:28 +00:00
|
|
|
version = "0.1.3"
|
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"
|
|
|
|
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
|
|
|
[[bin]]
|
|
|
|
name = "lune"
|
2023-01-21 03:01:02 +00:00
|
|
|
path = "src/cli/main.rs"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "lune"
|
|
|
|
path = "src/lib/lib.rs"
|
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-01-19 01:47:14 +00:00
|
|
|
[dependencies]
|
2023-01-23 02:46:30 +00:00
|
|
|
|
2023-01-23 02:14:13 +00:00
|
|
|
anyhow = "1.0.68"
|
|
|
|
os_str_bytes = "6.4.1"
|
2023-01-27 00:36:06 +00:00
|
|
|
regex = "1.7.1"
|
2023-01-23 02:14:13 +00:00
|
|
|
serde_json = "1.0.91"
|
|
|
|
smol = "1.3.0"
|
|
|
|
ureq = "2.6.2"
|
2023-01-23 02:46:30 +00:00
|
|
|
|
|
|
|
clap = { version = "4.1.1", features = ["derive"] }
|
2023-01-27 00:36:06 +00:00
|
|
|
full_moon = { version = "0.17.0", features = ["roblox"] }
|
2023-01-23 02:46:30 +00:00
|
|
|
mlua = { version = "0.8.7", features = ["luau", "async", "serialize"] }
|
|
|
|
serde = { version = "1.0.152", features = ["derive"] }
|