lune/packages/lib/Cargo.toml

59 lines
1.2 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
directories.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
reqwest.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
2023-02-24 16:48:11 +00:00
async-trait = "0.1"
blocking = "1.3"
dialoguer = "0.10"
dunce = "1.0"
2023-05-20 08:22:50 +01:00
lz4_flex = "0.10"
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-05-19 16:01:59 +01:00
async-compression = { version = "0.4", features = [
"tokio",
"brotli",
"deflate",
"gzip",
"zlib",
] }
2023-02-24 16:48:11 +00:00
hyper = { version = "0.14", features = ["full"] }
2023-06-08 11:23:33 +01:00
hyper-tungstenite = { version = "0.10" }
tokio-tungstenite = { version = "0.19" }
2023-02-06 00:13:58 +00:00
[dev-dependencies]
2023-02-24 16:48:11 +00:00
anyhow = "1.0"