lune/Cargo.toml

155 lines
3.8 KiB
TOML
Raw Normal View History

2023-07-20 08:47:00 +01:00
[package]
name = "lune"
2024-04-15 22:34:51 +01:00
version = "0.8.3"
2023-01-19 01:47:14 +00:00
edition = "2021"
2023-01-25 01:36:59 +00:00
license = "MPL-2.0"
2024-01-14 12:42:10 +00:00
repository = "https://github.com/lune-org/lune"
2023-10-06 03:52:57 +01:00
description = "A standalone Luau runtime"
2023-02-06 00:13:58 +00:00
readme = "README.md"
2023-10-06 03:52:57 +01:00
keywords = ["cli", "lua", "luau", "runtime"]
2023-01-19 02:19:10 +00:00
categories = ["command-line-interface"]
2023-01-19 01:47:14 +00:00
2023-07-20 08:47:00 +01:00
[[bin]]
name = "lune"
path = "src/main.rs"
2023-01-23 02:46:30 +00:00
2023-07-20 08:47:00 +01:00
[lib]
name = "lune"
path = "src/lib.rs"
2023-07-20 08:47:00 +01:00
[features]
default = ["cli", "roblox"]
cli = [
"dep:anyhow",
"dep:env_logger",
"dep:clap",
"dep:include_dir",
"dep:regex",
"dep:rustyline",
"dep:zip_next",
2023-07-20 08:47:00 +01:00
]
roblox = [
"dep:glam",
"dep:rand",
"dep:rbx_cookie",
"dep:rbx_binary",
"dep:rbx_dom_weak",
"dep:rbx_reflection",
"dep:rbx_reflection_database",
"dep:rbx_xml",
]
2023-02-25 12:41:50 +00:00
# Profile for building the release binary, with the following options set:
#
2023-02-25 12:41:50 +00:00
# 1. Optimize for size
# 2. Automatically strip symbols from the binary
2023-05-06 10:10:59 +01:00
# 3. Enable link-time optimization
#
# Note that we could abort instead of panicking to cut down on size
# even more, but because we use the filesystem & some other APIs we
# need the panic unwinding to properly handle usage of said APIs
#
2023-02-24 16:44:09 +00:00
[profile.release]
2023-02-25 12:41:50 +00:00
opt-level = "z"
strip = true
2023-05-06 10:10:59 +01:00
lto = true
2023-07-20 08:47:00 +01:00
# All of the dependencies for Lune.
#
# Dependencies are categorized as following:
#
# 1. General dependencies with no specific features set
# 2. Large / core dependencies that have many different crates and / or features set
# 3. Dependencies for specific features of Lune, eg. the CLI or massive Roblox builtin library
#
[dependencies]
console = "0.15"
directories = "5.0"
futures-util = "0.3"
once_cell = "1.17"
thiserror = "1.0"
async-trait = "0.1"
2023-10-06 03:48:26 +01:00
dialoguer = "0.11"
2023-07-20 08:47:00 +01:00
dunce = "1.0"
2023-08-04 19:32:07 +01:00
lz4_flex = "0.11"
2023-08-19 21:31:17 +01:00
path-clean = "1.0"
pathdiff = "0.2"
2023-07-20 08:47:00 +01:00
pin-project = "1.0"
2023-08-04 19:32:07 +01:00
urlencoding = "2.1"
bstr = "1.9.1"
2023-07-20 08:47:00 +01:00
### RUNTIME
blocking = "1.5"
tracing = "0.1"
2023-08-22 16:47:09 +01:00
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tokio = { version = "1.24", features = ["full", "tracing"] }
os_str_bytes = { version = "7.0", features = ["conversions"] }
mlua-luau-scheduler = { version = "0.0.2" }
mlua = { version = "0.9.7", features = [
"luau",
"luau-jit",
"async",
"serialize",
] }
2023-07-20 08:47:00 +01:00
### SERDE
async-compression = { version = "0.4", features = [
"tokio",
"brotli",
"deflate",
"gzip",
"zlib",
] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
serde_yaml = "0.9"
2023-09-15 20:00:01 +01:00
toml = { version = "0.8", features = ["preserve_order"] }
2023-07-20 08:47:00 +01:00
### NET
hyper = { version = "1.1", features = ["full"] }
hyper-util = { version = "0.1", features = ["full"] }
http = "1.0"
http-body-util = { version = "0.1" }
hyper-tungstenite = { version = "0.13" }
2023-07-20 08:47:00 +01:00
reqwest = { version = "0.11", default-features = false, features = [
"rustls-tls",
] }
tokio-tungstenite = { version = "0.21", features = ["rustls-tls-webpki-roots"] }
2023-07-20 08:47:00 +01:00
### DATETIME
2024-03-11 18:17:23 +00:00
chrono = "=0.4.34" # NOTE: 0.4.35 does not compile with chrono_lc
2023-09-15 20:00:01 +01:00
chrono_lc = "0.1"
2023-07-20 08:47:00 +01:00
### CLI
anyhow = { optional = true, version = "1.0" }
env_logger = { optional = true, version = "0.11" }
itertools = "0.12"
2023-07-20 08:47:00 +01:00
clap = { optional = true, version = "4.1", features = ["derive"] }
2023-09-15 20:00:01 +01:00
include_dir = { optional = true, version = "0.7", features = ["glob"] }
2023-07-20 08:47:00 +01:00
regex = { optional = true, version = "1.7", default-features = false, features = [
"std",
"unicode-perl",
] }
2024-03-11 18:17:23 +00:00
rustyline = { optional = true, version = "14.0" }
zip_next = { optional = true, version = "1.1" }
2023-07-20 08:47:00 +01:00
### ROBLOX
2024-04-15 22:28:51 +01:00
glam = { optional = true, version = "0.27" }
2023-07-20 08:47:00 +01:00
rand = { optional = true, version = "0.8" }
2023-10-29 20:32:07 +00:00
rbx_cookie = { optional = true, version = "0.1.4", default-features = false }
2023-07-20 08:47:00 +01:00
2023-10-25 10:12:08 +01:00
rbx_binary = { optional = true, version = "0.7.3" }
2023-10-04 15:02:17 +01:00
rbx_dom_weak = { optional = true, version = "2.6.0" }
rbx_reflection = { optional = true, version = "4.4.0" }
rbx_reflection_database = { optional = true, version = "0.2.9" }
rbx_xml = { optional = true, version = "0.13.2" }