lune/crates/lune-std-net/Cargo.toml

40 lines
1 KiB
TOML
Raw Normal View History

2024-05-12 12:30:32 +01:00
[package]
name = "lune-std-net"
2024-08-10 12:07:56 +01:00
version = "0.1.2"
2024-05-12 12:30:32 +01:00
edition = "2021"
license = "MPL-2.0"
repository = "https://github.com/lune-org/lune"
description = "Lune standard library - Net"
2024-05-12 12:30:32 +01:00
[lib]
path = "src/lib.rs"
[lints]
workspace = true
[dependencies]
2024-08-10 12:07:56 +01:00
mlua = { version = "0.9.9", features = ["luau"] }
mlua-luau-scheduler = { version = "0.0.2", path = "../mlua-luau-scheduler" }
2024-05-12 12:30:32 +01:00
bstr = "1.9"
futures-util = "0.3"
hyper = { version = "1.1", features = ["full"] }
hyper-util = { version = "0.1", features = ["full"] }
http = "1.0"
http-body-util = { version = "0.1" }
hyper-tungstenite = { version = "0.13" }
reqwest = { version = "0.11", default-features = false, features = [
"rustls-tls",
] }
tokio-tungstenite = { version = "0.21", features = ["rustls-tls-webpki-roots"] }
urlencoding = "2.1"
tokio = { version = "1", default-features = false, features = [
"sync",
"net",
"macros",
] }
2024-08-10 12:07:56 +01:00
lune-utils = { version = "0.1.3", path = "../lune-utils" }
lune-std-serde = { version = "0.1.2", path = "../lune-std-serde" }