2023-02-06 00:13:58 +00:00
|
|
|
[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"
|
|
|
|
|
2023-03-09 11:17:25 +00:00
|
|
|
[features]
|
2023-03-21 18:13:41 +00:00
|
|
|
default = ["roblox"]
|
2023-03-09 11:17:25 +00:00
|
|
|
roblox = ["dep:lune-roblox"]
|
|
|
|
|
2023-02-06 00:13:58 +00:00
|
|
|
[dependencies]
|
|
|
|
|
2023-03-09 11:17:25 +00:00
|
|
|
lune-roblox = { path = "../lib-roblox", optional = true }
|
|
|
|
|
2023-02-09 22:07:30 +00:00
|
|
|
console.workspace = true
|
2023-02-24 16:44:09 +00:00
|
|
|
futures-util.workspace = true
|
2023-02-09 22:07:30 +00:00
|
|
|
lazy_static.workspace = true
|
2023-03-09 11:17:25 +00:00
|
|
|
mlua.workspace = true
|
2023-02-06 00:13:58 +00:00
|
|
|
serde.workspace = true
|
2023-02-24 16:44:09 +00:00
|
|
|
serde_json.workspace = true
|
|
|
|
serde_yaml.workspace = true
|
2023-02-25 12:41:50 +00:00
|
|
|
toml.workspace = true
|
2023-02-06 00:13:58 +00:00
|
|
|
tokio.workspace = true
|
|
|
|
reqwest.workspace = true
|
|
|
|
|
2023-02-24 16:48:11 +00:00
|
|
|
async-trait = "0.1"
|
|
|
|
blocking = "1.3"
|
|
|
|
dialoguer = "0.10"
|
|
|
|
directories = "4.0"
|
2023-03-19 12:23:25 +00:00
|
|
|
dunce = "1.0"
|
2023-02-24 16:48:11 +00:00
|
|
|
pin-project = "1.0"
|
|
|
|
os_str_bytes = "6.4"
|
2023-03-21 16:48:07 +00:00
|
|
|
urlencoding = "2.1.2"
|
2023-02-06 00:13:58 +00:00
|
|
|
|
2023-02-24 16:48:11 +00:00
|
|
|
hyper = { version = "0.14", features = ["full"] }
|
|
|
|
hyper-tungstenite = { version = "0.9" }
|
|
|
|
tokio-tungstenite = { version = "0.18" }
|
2023-02-06 00:13:58 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-02-24 16:48:11 +00:00
|
|
|
anyhow = "1.0"
|