mirror of
https://github.com/Dangoware/sqp.git
synced 2025-06-22 14:42:54 -05:00
Made repository workspace
This commit is contained in:
parent
9a4760ad2b
commit
ea952b2c24
9 changed files with 29 additions and 17 deletions
29
Cargo.toml
29
Cargo.toml
|
@ -1,24 +1,19 @@
|
|||
[package]
|
||||
name = "sqp"
|
||||
description = """
|
||||
The squishiest image format!
|
||||
"""
|
||||
repository = "https://github.com/Dangoware/sqp"
|
||||
license = "MIT OR Apache-2.0"
|
||||
authors = ["G2 <ke0bhogsg@gmail.com>"]
|
||||
version = "0.1.1"
|
||||
edition = "2021"
|
||||
categories = ["encoding", "compression", "graphics", "multimedia::images", "multimedia::encoding"]
|
||||
[workspace]
|
||||
resolver = "2"
|
||||
members = [
|
||||
"sqp",
|
||||
]
|
||||
|
||||
[dependencies]
|
||||
byteorder = "1.5"
|
||||
integer-encoding = "4.0"
|
||||
rayon = "1.10"
|
||||
thiserror = "1.0"
|
||||
[workspace.package]
|
||||
authors = ["G2-Games <ke0bhogsg@gmail.com>"]
|
||||
|
||||
[workspace.lints.rust]
|
||||
unsafe_code = "forbid"
|
||||
|
||||
[profile.production]
|
||||
inherits = "release"
|
||||
lto = true
|
||||
strip = true
|
||||
lto = true
|
||||
opt-level = "z"
|
||||
codegen-units = 1
|
||||
panic = "abort"
|
||||
|
|
17
sqp/Cargo.toml
Normal file
17
sqp/Cargo.toml
Normal file
|
@ -0,0 +1,17 @@
|
|||
[package]
|
||||
name = "sqp"
|
||||
description = """
|
||||
The squishiest image format!
|
||||
"""
|
||||
repository = "https://github.com/Dangoware/sqp"
|
||||
license = "MIT OR Apache-2.0"
|
||||
authors.workspace = true
|
||||
version = "0.1.1"
|
||||
edition = "2021"
|
||||
categories = ["encoding", "compression", "graphics", "multimedia::images", "multimedia::encoding"]
|
||||
|
||||
[dependencies]
|
||||
byteorder = "1.5"
|
||||
integer-encoding = "4.0"
|
||||
rayon = "1.10"
|
||||
thiserror = "2.0"
|
Loading…
Reference in a new issue