mirror of
https://github.com/Dangoware/sqp.git
synced 2025-06-22 22:52:56 -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]
|
[workspace]
|
||||||
name = "sqp"
|
resolver = "2"
|
||||||
description = """
|
members = [
|
||||||
The squishiest image format!
|
"sqp",
|
||||||
"""
|
]
|
||||||
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"]
|
|
||||||
|
|
||||||
[dependencies]
|
[workspace.package]
|
||||||
byteorder = "1.5"
|
authors = ["G2-Games <ke0bhogsg@gmail.com>"]
|
||||||
integer-encoding = "4.0"
|
|
||||||
rayon = "1.10"
|
[workspace.lints.rust]
|
||||||
thiserror = "1.0"
|
unsafe_code = "forbid"
|
||||||
|
|
||||||
[profile.production]
|
[profile.production]
|
||||||
inherits = "release"
|
inherits = "release"
|
||||||
lto = true
|
|
||||||
strip = true
|
strip = true
|
||||||
|
lto = true
|
||||||
|
opt-level = "z"
|
||||||
codegen-units = 1
|
codegen-units = 1
|
||||||
panic = "abort"
|
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