22 lines
463 B
TOML
22 lines
463 B
TOML
[package]
|
|
name = "lb"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
|
|
[features]
|
|
task = []
|
|
fs = ["tokio/fs"]
|
|
net = ["tokio/net"]
|
|
|
|
[dependencies]
|
|
derive_more = { version = "2.0.1", features = ["full"] }
|
|
luaffi = { path = "../luaffi" }
|
|
luajit = { path = "../luajit" }
|
|
sysexits = "0.9.0"
|
|
thiserror = "2.0.12"
|
|
tokio = { version = "1.45.1", features = ["rt"] }
|