39 lines
906 B
TOML
39 lines
906 B
TOML
[package]
|
|
name = "iris"
|
|
default-run = "test"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
iris-core = { workspace = true }
|
|
iris-macro = { workspace = true }
|
|
cosmic-text = { workspace = true }
|
|
unicode-segmentation = { workspace = true }
|
|
winit = { workspace = true }
|
|
arboard = { workspace = true, features = ["wayland-data-control"] }
|
|
pollster = { workspace = true }
|
|
wgpu = { workspace = true }
|
|
image = { workspace = true }
|
|
|
|
[workspace]
|
|
members = ["core", "macro"]
|
|
|
|
[workspace.package]
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[workspace.dependencies]
|
|
pollster = "0.4.0"
|
|
winit = "0.30.12"
|
|
wgpu = "27.0.1"
|
|
bytemuck = "1.23.1"
|
|
image = "0.25.6"
|
|
cosmic-text = "0.15.0"
|
|
unicode-segmentation = "1.12.0"
|
|
fxhash = "0.2.1"
|
|
arboard = "3.6.1"
|
|
iris-core = { path = "core" }
|
|
iris-macro = { path = "macro" }
|