24 lines
546 B
TOML
24 lines
546 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 = ["tokio/rt", "tokio/time"]
|
|
fs = ["tokio/fs", "dep:glob"]
|
|
net = ["tokio/net"]
|
|
glob = ["dep:glob"]
|
|
|
|
[dependencies]
|
|
derive_more = { version = "2.0.1", features = ["full"] }
|
|
glob = { version = "0.3.2", optional = true }
|
|
luaffi = { path = "../luaffi" }
|
|
luajit = { path = "../luajit" }
|
|
sysexits = "0.9.0"
|
|
thiserror = "2.0.12"
|
|
tokio = { version = "1.45.1" }
|