mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
Add utils crate
This commit is contained in:
parent
e53d247c95
commit
5c5ea5b4cb
4 changed files with 17 additions and 0 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -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"
|
||||
|
|
|
@ -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:
|
||||
|
|
11
crates/lune-utils/Cargo.toml
Normal file
11
crates/lune-utils/Cargo.toml
Normal 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
|
1
crates/lune-utils/src/lib.rs
Normal file
1
crates/lune-utils/src/lib.rs
Normal file
|
@ -0,0 +1 @@
|
|||
#![allow(clippy::cargo_common_metadata)]
|
Loading…
Add table
Reference in a new issue