lune/packages/lib/Cargo.toml

51 lines
1 KiB
TOML
Raw Normal View History

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"
[features]
default = ["roblox"]
2023-03-22 19:20:43 +00:00
roblox = ["dep:lune-roblox", "dep:rbx_cookie"]
2023-02-06 00:13:58 +00:00
[dependencies]
lune-roblox = { path = "../lib-roblox", optional = true }
2023-03-22 19:20:43 +00:00
rbx_cookie = { version = "0.1.2", optional = true }
console.workspace = true
2023-02-24 16:44:09 +00:00
futures-util.workspace = true
mlua.workspace = true
2023-03-25 16:37:12 +00:00
once_cell.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"
dunce = "1.0"
2023-02-24 16:48:11 +00:00
pin-project = "1.0"
os_str_bytes = "6.4"
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"