mirror of
https://github.com/lune-org/lune.git
synced 2024-12-12 21:10:36 +00:00
39 lines
841 B
TOML
39 lines
841 B
TOML
[package]
|
|
name = "lune"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description.workspace = true
|
|
readme.workspace = true
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
|
|
[lib]
|
|
name = "lune"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
|
|
console.workspace = true
|
|
lazy_static.workspace = true
|
|
serde_json.workspace = true
|
|
serde.workspace = true
|
|
tokio.workspace = true
|
|
reqwest.workspace = true
|
|
|
|
async-trait = "0.1.64"
|
|
blocking = "1.3.0"
|
|
dialoguer = "0.10.3"
|
|
directories = "4.0.1"
|
|
futures-util = "0.3.26"
|
|
pin-project = "1.0.12"
|
|
os_str_bytes = "6.4.1"
|
|
|
|
hyper = { version = "0.14.24", features = ["full"] }
|
|
hyper-tungstenite = { version = "0.9.0" }
|
|
tokio-tungstenite = { version = "0.18.0" }
|
|
mlua = { version = "0.8.7", features = ["luau", "serialize"] }
|
|
|
|
[dev-dependencies]
|
|
anyhow = "1.0.69"
|