179 lines
5.1 KiB
TOML
179 lines
5.1 KiB
TOML
[package]
|
|
name = "jay-compositor"
|
|
version = "1.12.0"
|
|
edition = "2024"
|
|
build = "build/build.rs"
|
|
license = "GPL-3.0-only"
|
|
description = "The Jay compositor"
|
|
repository = "https://github.com/mahkoh/jay"
|
|
default-run = "jay"
|
|
|
|
[[bin]]
|
|
name = "jay"
|
|
path = "src/main.rs"
|
|
|
|
[workspace]
|
|
resolver = "3"
|
|
members = [
|
|
"jay-config",
|
|
"jay-config-schema",
|
|
"geometry",
|
|
"layout-animation",
|
|
"formats",
|
|
"edid",
|
|
"units",
|
|
"utils",
|
|
"criteria",
|
|
"cmm",
|
|
"time",
|
|
"tracy",
|
|
"async-engine",
|
|
"io-uring",
|
|
"bufio",
|
|
"dbus-core",
|
|
"xcon",
|
|
"wire-types",
|
|
"wire-buf",
|
|
"tree-types",
|
|
"eventfd-cache",
|
|
"wheel",
|
|
"cpu-worker",
|
|
"sighand",
|
|
"pr-caps",
|
|
"bugs",
|
|
"logger",
|
|
"video-types",
|
|
"output-types",
|
|
"input-types",
|
|
"keyboard",
|
|
"gfx-types",
|
|
"theme",
|
|
"clientmem",
|
|
"allocator",
|
|
"output-schedule",
|
|
"drm-feedback",
|
|
"udmabuf",
|
|
"damage",
|
|
"pango",
|
|
"libinput",
|
|
"toml-config",
|
|
"algorithms",
|
|
"toml-spec",
|
|
"wire-to-xml",
|
|
"xml-to-wire",
|
|
]
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
debug = "full"
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|
|
|
|
[dependencies]
|
|
jay-config = { version = "1.10.0", path = "jay-config" }
|
|
jay-toml-config = { version = "0.12.0", path = "toml-config" }
|
|
jay-algorithms = { version = "0.4.0", path = "algorithms" }
|
|
jay-geometry = { version = "0.1.0", path = "geometry" }
|
|
jay-layout-animation = { version = "0.1.0", path = "layout-animation" }
|
|
jay-formats = { version = "0.1.0", path = "formats" }
|
|
jay-edid = { version = "0.1.0", path = "edid" }
|
|
jay-units = { version = "0.1.0", path = "units" }
|
|
jay-utils = { version = "0.1.0", path = "utils" }
|
|
jay-criteria = { version = "0.1.0", path = "criteria" }
|
|
jay-cmm = { version = "0.1.0", path = "cmm" }
|
|
jay-time = { version = "0.1.0", path = "time" }
|
|
jay-tracy = { version = "0.1.0", path = "tracy" }
|
|
jay-async-engine = { version = "0.1.0", path = "async-engine" }
|
|
jay-io-uring = { version = "0.1.0", path = "io-uring" }
|
|
jay-bufio = { version = "0.1.0", path = "bufio" }
|
|
jay-dbus-core = { version = "0.1.0", path = "dbus-core" }
|
|
jay-xcon = { version = "0.1.0", path = "xcon" }
|
|
jay-wire-types = { version = "0.1.0", path = "wire-types" }
|
|
jay-wire-buf = { version = "0.1.0", path = "wire-buf" }
|
|
jay-tree-types = { version = "0.1.0", path = "tree-types" }
|
|
jay-eventfd-cache = { version = "0.1.0", path = "eventfd-cache" }
|
|
jay-wheel = { version = "0.1.0", path = "wheel" }
|
|
jay-cpu-worker = { version = "0.1.0", path = "cpu-worker" }
|
|
jay-sighand = { version = "0.1.0", path = "sighand" }
|
|
jay-pr-caps = { version = "0.1.0", path = "pr-caps" }
|
|
jay-bugs = { version = "0.1.0", path = "bugs" }
|
|
jay-logger = { version = "0.1.0", path = "logger" }
|
|
jay-video-types = { version = "0.1.0", path = "video-types" }
|
|
jay-output-types = { version = "0.1.0", path = "output-types" }
|
|
jay-input-types = { version = "0.1.0", path = "input-types" }
|
|
jay-keyboard = { version = "0.1.0", path = "keyboard" }
|
|
jay-gfx-types = { version = "0.1.0", path = "gfx-types" }
|
|
jay-theme = { version = "0.1.0", path = "theme" }
|
|
jay-clientmem = { version = "0.1.0", path = "clientmem" }
|
|
jay-allocator = { version = "0.1.0", path = "allocator" }
|
|
jay-output-schedule = { version = "0.1.0", path = "output-schedule" }
|
|
jay-drm-feedback = { version = "0.1.0", path = "drm-feedback" }
|
|
jay-udmabuf = { version = "0.1.0", path = "udmabuf" }
|
|
jay-damage = { version = "0.1.0", path = "damage" }
|
|
jay-pango = { version = "0.1.0", path = "pango" }
|
|
jay-libinput = { version = "0.1.0", path = "libinput" }
|
|
|
|
uapi = "0.2.13"
|
|
thiserror = "2.0.11"
|
|
ahash = "0.8.7"
|
|
log = { version = "0.4.20", features = ["std"] }
|
|
futures-util = "0.3.30"
|
|
num-traits = "0.2.17"
|
|
num-derive = "0.4.2"
|
|
libloading = "0.9.0"
|
|
bstr = { version = "1.9.0", default-features = false, features = ["std"] }
|
|
isnt = "0.2.0"
|
|
rand = "0.10.0"
|
|
smallvec = { version = "1.11.1", features = ["const_generics", "const_new", "union"] }
|
|
byteorder = "1.5.0"
|
|
bincode = "1.3.3"
|
|
pin-project = "1.1.4"
|
|
clap = { version = "4.4.18", features = ["derive", "wrap_help"] }
|
|
clap_complete = "4.4.10"
|
|
humantime = "2.1.0"
|
|
dirs = "6.0.0"
|
|
backtrace = "0.3.69"
|
|
chrono = "0.4.33"
|
|
parking_lot = "0.12.1"
|
|
arrayvec = "0.7.4"
|
|
indexmap = "2.2.0"
|
|
ash = { package = "jay-ash", version = "0.3.0" }
|
|
gpu-alloc = "0.6.0"
|
|
gpu-alloc-types = "0.3.0"
|
|
serde = { version = "1.0.196", features = ["derive"] }
|
|
serde_json = "1.0.128"
|
|
linearize = { version = "0.1.3", features = ["derive"] }
|
|
png = "0.18.0"
|
|
kbvm = { version = "0.1.6", features = ["compose"] }
|
|
tiny-skia = { version = "0.12.0", default-features = false, features = ["std"] }
|
|
regex = "1.11.1"
|
|
cfg-if = "1.0.0"
|
|
opera = "1.0.1"
|
|
with_builtin_macros = "0.1.0"
|
|
blake3 = "1.8.2"
|
|
run-on-drop = "1.0.0"
|
|
numeric-sort = "0.1.5"
|
|
|
|
[build-dependencies]
|
|
repc = "0.1.1"
|
|
anyhow = "1.0.79"
|
|
bstr = { version = "1.9.0", default-features = false, features = ["std"] }
|
|
cc = "1.0.86"
|
|
blake3 = "1.8.2"
|
|
walkdir = "2.5.0"
|
|
|
|
#[profile.dev.build-override]
|
|
#opt-level = 3
|
|
|
|
[profile.dev.package."jay-algorithms"]
|
|
opt-level = 3
|
|
|
|
[profile.dev.package."smallvec"]
|
|
opt-level = 3
|
|
|
|
|
|
[features]
|
|
rc_tracking = []
|
|
it = ["jay-async-engine/it", "jay-cpu-worker/it"]
|
|
tracy = ["jay-tracy/tracy", "jay-async-engine/tracy", "jay-cpu-worker/tracy", "jay-clientmem/tracy"]
|