mirror of
https://github.com/Zenithsiz/zutil.git
synced 2026-02-03 18:35:15 +00:00
53 lines
1.5 KiB
TOML
53 lines
1.5 KiB
TOML
[workspace]
|
|
|
|
members = ["zutil-async-loadable", "zutil-cloned", "zutil-logger"]
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
authors = ["Filipe Rodrigues <filipejacintorodrigues1@gmail.com>"]
|
|
edition = "2024"
|
|
homepage = "https://github.com/zenithsiz/zutil"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/zenithsiz/zutil"
|
|
|
|
[workspace.dependencies]
|
|
|
|
|
|
# Workspace members
|
|
# TODO: Do we need to specify the version here?
|
|
zutil-async-loadable = { path = "zutil-async-loadable", version = "0.1.0" }
|
|
zutil-cloned = { path = "zutil-cloned", version = "0.1.0" }
|
|
zutil-logger = { path = "zutil-logger", version = "0.1.0" }
|
|
|
|
app-error = "0.1.0"
|
|
arrayref = "0.3.9"
|
|
ascii = "1.1.0"
|
|
derive_more = "2.0.1"
|
|
duplicate = "2.0.0"
|
|
eframe = "0.32.3"
|
|
either = "1.15.0"
|
|
futures = "0.3.31"
|
|
int-conv = "0.1.4"
|
|
itertools = "0.14.0"
|
|
log = "0.4.28"
|
|
mappable-rc = "0.1.1"
|
|
native-dialog = "0.9.0"
|
|
parking_lot = "0.12.4"
|
|
pin-project = "1.1.10"
|
|
quote = "1.0.40"
|
|
ref-cast = "1.0.24"
|
|
sealed = "0.6.0"
|
|
serde = "1.0.226"
|
|
stable_deref_trait = "1.2.0"
|
|
syn = "2.0.106"
|
|
thiserror = "2.0.16"
|
|
tokio = "1.47.1"
|
|
tracing = "0.1.41"
|
|
tracing-subscriber = "0.3.20"
|
|
yoke = "0.8.0"
|
|
|
|
[workspace.lints]
|
|
|
|
# Must use `expect` instead of `unwrap`
|
|
clippy.unwrap_used = "forbid"
|