mirror of
https://github.com/lune-org/lune.git
synced 2024-12-12 13:00:37 +00:00
47 lines
1 KiB
TOML
47 lines
1 KiB
TOML
[package]
|
|
name = "lune-std-serde"
|
|
version = "0.1.1"
|
|
edition = "2021"
|
|
license = "MPL-2.0"
|
|
repository = "https://github.com/lune-org/lune"
|
|
description = "Lune standard library - Serde"
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
mlua = { version = "0.9.7", features = ["luau", "serialize"] }
|
|
|
|
async-compression = { version = "0.4", features = [
|
|
"tokio",
|
|
"brotli",
|
|
"deflate",
|
|
"gzip",
|
|
"zlib",
|
|
] }
|
|
bstr = "1.9"
|
|
lz4 = "1.26"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = { version = "1.0", features = ["preserve_order"] }
|
|
serde_yaml = "0.9"
|
|
toml = { version = "0.8", features = ["preserve_order"] }
|
|
|
|
digest = "0.10.7"
|
|
hmac = "0.12.1"
|
|
md-5 = "0.10.6"
|
|
sha1 = "0.10.6"
|
|
sha2 = "0.10.8"
|
|
sha3 = "0.10.8"
|
|
# This feature MIGHT break due to the unstable nature of the digest crate.
|
|
# Check before updating it.
|
|
blake3 = { version = "=1.5.0", features = ["traits-preview"] }
|
|
|
|
tokio = { version = "1", default-features = false, features = [
|
|
"rt",
|
|
"io-util",
|
|
] }
|
|
|
|
lune-utils = { version = "0.1.2", path = "../lune-utils" }
|