Add utils crate

This commit is contained in:
Filip Tibell 2024-04-21 14:58:36 +02:00
parent e53d247c95
commit 5c5ea5b4cb
No known key found for this signature in database
4 changed files with 17 additions and 0 deletions

4
Cargo.lock generated
View file

@ -1593,6 +1593,10 @@ version = "0.8.3"
name = "lune-std-task"
version = "0.8.3"
[[package]]
name = "lune-utils"
version = "0.8.3"
[[package]]
name = "lz4"
version = "1.24.0"

View file

@ -14,6 +14,7 @@ members = [
"crates/lune-std-serde",
"crates/lune-std-stdio",
"crates/lune-std-task",
"crates/lune-utils",
]
# Profile for building the release binary, with the following options set:

View file

@ -0,0 +1,11 @@
[package]
name = "lune-utils"
version = "0.8.3"
edition = "2021"
license = "MPL-2.0"
[lib]
path = "src/lib.rs"
[lints]
workspace = true

View file

@ -0,0 +1 @@
#![allow(clippy::cargo_common_metadata)]