mirror of
https://github.com/lune-org/lune.git
synced 2025-05-04 10:43:57 +01:00
41 lines
1,012 B
TOML
41 lines
1,012 B
TOML
[package]
|
|
name = "lune-std-net"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
license = "MPL-2.0"
|
|
repository = "https://github.com/lune-org/lune"
|
|
description = "Lune standard library - Net"
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
mlua = { version = "0.10.3", features = ["luau"] }
|
|
mlua-luau-scheduler = { version = "0.1.0", path = "../mlua-luau-scheduler" }
|
|
|
|
async-channel = "2.3"
|
|
async-executor = "1.13"
|
|
async-io = "2.4"
|
|
async-lock = "3.4"
|
|
async-net = "2.0"
|
|
async-tungstenite = "0.29"
|
|
blocking = "1.6"
|
|
bstr = "1.9"
|
|
futures = { version = "0.3", default-features = false, features = ["std"] }
|
|
futures-lite = "2.6"
|
|
futures-rustls = "0.26"
|
|
http-body-util = "0.1"
|
|
hyper = { version = "1.6", features = ["http1", "client", "server"] }
|
|
pin-project-lite = "0.2"
|
|
rustls = "0.23"
|
|
rustls-pki-types = "1.11"
|
|
url = "2.5"
|
|
urlencoding = "2.1"
|
|
webpki = "0.22"
|
|
webpki-roots = "0.26"
|
|
|
|
lune-utils = { version = "0.2.0", path = "../lune-utils" }
|
|
lune-std-serde = { version = "0.2.0", path = "../lune-std-serde" }
|