27 lines
714 B
TOML
27 lines
714 B
TOML
[package]
|
|
name = "lb"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
|
|
[features]
|
|
runtime = ["tokio/rt"]
|
|
task = ["tokio/rt", "tokio/time"]
|
|
time = []
|
|
fs = ["tokio/fs", "dep:walkdir", "dep:globset", "dep:tempfile"]
|
|
net = ["tokio/net", "tokio/io-util"]
|
|
|
|
[dependencies]
|
|
derive_more = { version = "2.0.1", features = ["full"] }
|
|
globset = { version = "0.4.16", optional = true }
|
|
luaffi = { path = "../luaffi" }
|
|
luajit = { path = "../luajit" }
|
|
sysexits = "0.9.0"
|
|
tempfile = { version = "3.20.0", optional = true }
|
|
thiserror = "2.0.12"
|
|
tokio = { version = "1.45.1" }
|
|
walkdir = { version = "2.5.0", optional = true }
|