all: inherit metadeta from cargo workspace
This commit is contained in:
parent
1c21bd1259
commit
d920e554cf
52 changed files with 328 additions and 320 deletions
|
|
@ -1,8 +1,8 @@
|
|||
[package]
|
||||
name = "jay-algorithms"
|
||||
version = "0.4.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
description = "Internal dependency of the Jay compositor"
|
||||
repository = "https://github.com/mahkoh/jay"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
[package]
|
||||
name = "jay-allocator"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
jay-formats = { version = "0.1.0", path = "../formats" }
|
||||
jay-video-types = { version = "0.1.0", path = "../video-types" }
|
||||
jay-formats = { path = "../formats" }
|
||||
jay-video-types = { path = "../video-types" }
|
||||
|
||||
thiserror = "2.0.11"
|
||||
uapi = "0.2.13"
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
[package]
|
||||
name = "jay-async-engine"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
jay-time = { version = "0.1.0", path = "../time" }
|
||||
jay-tracy = { version = "0.1.0", path = "../tracy" }
|
||||
jay-utils = { version = "0.1.0", path = "../utils" }
|
||||
jay-time = { path = "../time" }
|
||||
jay-tracy = { path = "../tracy" }
|
||||
jay-utils = { path = "../utils" }
|
||||
|
||||
[features]
|
||||
it = []
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
[package]
|
||||
name = "jay-bufio"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
jay-io-uring = { version = "0.1.0", path = "../io-uring" }
|
||||
jay-utils = { version = "0.1.0", path = "../utils" }
|
||||
jay-io-uring = { path = "../io-uring" }
|
||||
jay-utils = { path = "../utils" }
|
||||
|
||||
thiserror = "2.0.11"
|
||||
uapi = "0.2.13"
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
[package]
|
||||
name = "jay-bugs"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
ahash = "0.8.7"
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
[package]
|
||||
name = "jay-clientmem"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
jay-cpu-worker = { version = "0.1.0", path = "../cpu-worker" }
|
||||
jay-gfx-types = { version = "0.1.0", path = "../gfx-types" }
|
||||
jay-tracy = { version = "0.1.0", path = "../tracy" }
|
||||
jay-utils = { version = "0.1.0", path = "../utils" }
|
||||
jay-cpu-worker = { path = "../cpu-worker" }
|
||||
jay-gfx-types = { path = "../gfx-types" }
|
||||
jay-tracy = { path = "../tracy" }
|
||||
jay-utils = { path = "../utils" }
|
||||
|
||||
log = "0.4.20"
|
||||
thiserror = "2.0.11"
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
[package]
|
||||
name = "jay-cmm"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
jay-utils = { version = "0.1.0", path = "../utils" }
|
||||
jay-utils = { path = "../utils" }
|
||||
|
|
|
|||
|
|
@ -1,15 +1,15 @@
|
|||
[package]
|
||||
name = "jay-cpu-worker"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
jay-async-engine = { version = "0.1.0", path = "../async-engine" }
|
||||
jay-geometry = { version = "0.1.0", path = "../geometry" }
|
||||
jay-io-uring = { version = "0.1.0", path = "../io-uring" }
|
||||
jay-tracy = { version = "0.1.0", path = "../tracy" }
|
||||
jay-utils = { version = "0.1.0", path = "../utils" }
|
||||
jay-async-engine = { path = "../async-engine" }
|
||||
jay-geometry = { path = "../geometry" }
|
||||
jay-io-uring = { path = "../io-uring" }
|
||||
jay-tracy = { path = "../tracy" }
|
||||
jay-utils = { path = "../utils" }
|
||||
|
||||
log = { version = "0.4.20", features = ["std"] }
|
||||
parking_lot = "0.12.1"
|
||||
|
|
@ -17,7 +17,7 @@ thiserror = "2.0.11"
|
|||
uapi = "0.2.13"
|
||||
|
||||
[dev-dependencies]
|
||||
jay-wheel = { version = "0.1.0", path = "../wheel" }
|
||||
jay-wheel = { path = "../wheel" }
|
||||
|
||||
[features]
|
||||
it = []
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
[package]
|
||||
name = "jay-criteria"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
jay-utils = { version = "0.1.0", path = "../utils" }
|
||||
jay-utils = { path = "../utils" }
|
||||
|
||||
ahash = "0.8.7"
|
||||
linearize = { version = "0.1.3", features = ["derive"] }
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
[package]
|
||||
name = "jay-damage"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
jay-geometry = { version = "0.1.0", path = "../geometry" }
|
||||
jay-tree-types = { version = "0.1.0", path = "../tree-types" }
|
||||
jay-units = { version = "0.1.0", path = "../units" }
|
||||
jay-geometry = { path = "../geometry" }
|
||||
jay-tree-types = { path = "../tree-types" }
|
||||
jay-units = { path = "../units" }
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
[package]
|
||||
name = "jay-dbus-core"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
jay-bufio = { version = "0.1.0", path = "../bufio" }
|
||||
jay-io-uring = { version = "0.1.0", path = "../io-uring" }
|
||||
jay-utils = { version = "0.1.0", path = "../utils" }
|
||||
jay-bufio = { path = "../bufio" }
|
||||
jay-io-uring = { path = "../io-uring" }
|
||||
jay-utils = { path = "../utils" }
|
||||
|
||||
bstr = { version = "1.9.0", default-features = false, features = ["std"] }
|
||||
thiserror = "2.0.11"
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
[package]
|
||||
name = "jay-drm-feedback"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
jay-video-types = { version = "0.1.0", path = "../video-types" }
|
||||
jay-video-types = { path = "../video-types" }
|
||||
|
||||
ahash = "0.8.7"
|
||||
byteorder = "1.5.0"
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
[package]
|
||||
name = "jay-edid"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
description = "EDID parsing for Jay"
|
||||
repository = "https://github.com/mahkoh/jay"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
[package]
|
||||
name = "jay-eventfd-cache"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
jay-async-engine = { version = "0.1.0", path = "../async-engine" }
|
||||
jay-io-uring = { version = "0.1.0", path = "../io-uring" }
|
||||
jay-utils = { version = "0.1.0", path = "../utils" }
|
||||
jay-async-engine = { path = "../async-engine" }
|
||||
jay-io-uring = { path = "../io-uring" }
|
||||
jay-utils = { path = "../utils" }
|
||||
|
||||
log = { version = "0.4.20", features = ["std"] }
|
||||
thiserror = "2.0.11"
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
[package]
|
||||
name = "jay-formats"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
description = "Pixel format tables for Jay"
|
||||
repository = "https://github.com/mahkoh/jay"
|
||||
|
||||
|
|
@ -10,4 +10,4 @@ repository = "https://github.com/mahkoh/jay"
|
|||
ahash = "0.8.7"
|
||||
ash = { package = "jay-ash", version = "0.3.0" }
|
||||
clap = { version = "4.4.18", features = ["derive", "wrap_help"] }
|
||||
jay-config = { version = "1.10.0", path = "../jay-config" }
|
||||
jay-config = { path = "../jay-config" }
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
[package]
|
||||
name = "jay-geometry"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
description = "Geometry primitives for Jay"
|
||||
repository = "https://github.com/mahkoh/jay"
|
||||
|
||||
[dependencies]
|
||||
jay-algorithms = { version = "0.4.0", path = "../algorithms" }
|
||||
jay-algorithms = { path = "../algorithms" }
|
||||
smallvec = { version = "1.11.1", features = ["const_generics", "const_new", "union"] }
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
[package]
|
||||
name = "jay-gfx-types"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
uapi = "0.2.13"
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
[package]
|
||||
name = "jay-input-types"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
description = "Input data types for the Jay compositor"
|
||||
repository = "https://github.com/mahkoh/jay"
|
||||
|
||||
[dependencies]
|
||||
jay-output-types = { version = "0.1.0", path = "../output-types" }
|
||||
jay-units = { version = "0.1.0", path = "../units" }
|
||||
jay-utils = { version = "0.1.0", path = "../utils" }
|
||||
jay-output-types = { path = "../output-types" }
|
||||
jay-units = { path = "../units" }
|
||||
jay-utils = { path = "../utils" }
|
||||
|
||||
linearize = { version = "0.1.3", features = ["derive"] }
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
[package]
|
||||
name = "jay-io-uring"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
jay-async-engine = { version = "0.1.0", path = "../async-engine" }
|
||||
jay-time = { version = "0.1.0", path = "../time" }
|
||||
jay-utils = { version = "0.1.0", path = "../utils" }
|
||||
jay-async-engine = { path = "../async-engine" }
|
||||
jay-time = { path = "../time" }
|
||||
jay-utils = { path = "../utils" }
|
||||
|
||||
log = { version = "0.4.20", features = ["std"] }
|
||||
run-on-drop = "1.0.0"
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
[package]
|
||||
name = "jay-config-schema"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
description = "Shared configuration schema declarations for the Jay compositor"
|
||||
repository = "https://github.com/mahkoh/jay"
|
||||
|
||||
[dependencies]
|
||||
ahash = "0.8.11"
|
||||
jay-config = { version = "1.10.0", path = "../jay-config" }
|
||||
jay-config = { path = "../jay-config" }
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
[package]
|
||||
name = "jay-config"
|
||||
version = "1.10.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
description = "Configuration crate for the Jay compositor"
|
||||
repository = "https://github.com/mahkoh/jay"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
[package]
|
||||
name = "jay-keyboard"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
description = "Keyboard state and keymap helpers for the Jay compositor"
|
||||
repository = "https://github.com/mahkoh/jay"
|
||||
|
||||
[dependencies]
|
||||
jay-input-types = { version = "0.1.0", path = "../input-types" }
|
||||
jay-utils = { version = "0.1.0", path = "../utils" }
|
||||
jay-input-types = { path = "../input-types" }
|
||||
jay-utils = { path = "../utils" }
|
||||
|
||||
blake3 = "1.8.2"
|
||||
kbvm = { version = "0.1.6", features = ["compose"] }
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
[package]
|
||||
name = "jay-layout-animation"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
description = "Layout animation planning for Jay"
|
||||
repository = "https://github.com/mahkoh/jay"
|
||||
|
||||
[dependencies]
|
||||
jay-geometry = { version = "0.1.0", path = "../geometry" }
|
||||
jay-geometry = { path = "../geometry" }
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
[package]
|
||||
name = "jay-libinput"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
build = "build.rs"
|
||||
|
||||
[dependencies]
|
||||
jay-utils = { version = "0.1.0", path = "../utils" }
|
||||
jay-utils = { path = "../utils" }
|
||||
|
||||
bstr = { version = "1.9.0", default-features = false, features = ["std"] }
|
||||
isnt = "0.2.0"
|
||||
|
|
@ -17,4 +17,5 @@ uapi = "0.2.13"
|
|||
|
||||
[build-dependencies]
|
||||
anyhow = "1.0.79"
|
||||
cc = "1.0.86"
|
||||
repc = "0.1.1"
|
||||
|
|
|
|||
|
|
@ -74,6 +74,11 @@ fn write_ty<W: Write>(f: &mut W, vals: &[i32], ty: &str) -> anyhow::Result<()> {
|
|||
}
|
||||
|
||||
fn main() -> anyhow::Result<()> {
|
||||
println!("cargo:rerun-if-changed=src/bridge.c");
|
||||
cc::Build::new()
|
||||
.file("src/bridge.c")
|
||||
.compile("jay-libinput-bridge");
|
||||
|
||||
let mut f = open("libinput_tys.rs")?;
|
||||
write_ty(
|
||||
&mut f,
|
||||
|
|
|
|||
32
crates/libinput/src/bridge.c
Normal file
32
crates/libinput/src/bridge.c
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#define _GNU_SOURCE
|
||||
|
||||
#include <stdarg.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
static char *fmt(const char *format, va_list args) {
|
||||
char *line;
|
||||
int ret = vasprintf(&line, format, args);
|
||||
if (ret < 0) {
|
||||
return 0;
|
||||
} else {
|
||||
return line;
|
||||
}
|
||||
}
|
||||
|
||||
void jay_libinput_log_handler(
|
||||
void *libinput,
|
||||
int priority,
|
||||
const char *line
|
||||
);
|
||||
|
||||
void jay_libinput_log_handler_bridge(
|
||||
void *libinput,
|
||||
int priority,
|
||||
const char *format,
|
||||
va_list args
|
||||
) {
|
||||
char *line = fmt(format, args);
|
||||
jay_libinput_log_handler(libinput, priority, line);
|
||||
free(line);
|
||||
}
|
||||
|
|
@ -1,12 +1,12 @@
|
|||
[package]
|
||||
name = "jay-logger"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
jay-config = { version = "1.10.0", path = "../jay-config" }
|
||||
jay-utils = { version = "0.1.0", path = "../utils" }
|
||||
jay-config = { path = "../jay-config" }
|
||||
jay-utils = { path = "../utils" }
|
||||
|
||||
backtrace = "0.3.69"
|
||||
bstr = { version = "1.9.0", default-features = false, features = ["std"] }
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
[package]
|
||||
name = "jay-output-schedule"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
jay-async-engine = { version = "0.1.0", path = "../async-engine" }
|
||||
jay-io-uring = { version = "0.1.0", path = "../io-uring" }
|
||||
jay-utils = { version = "0.1.0", path = "../utils" }
|
||||
jay-async-engine = { path = "../async-engine" }
|
||||
jay-io-uring = { path = "../io-uring" }
|
||||
jay-utils = { path = "../utils" }
|
||||
|
||||
futures-util = "0.3.30"
|
||||
log = "0.4.20"
|
||||
|
|
|
|||
|
|
@ -1,15 +1,15 @@
|
|||
[package]
|
||||
name = "jay-output-types"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
description = "Output identity types for the Jay compositor"
|
||||
repository = "https://github.com/mahkoh/jay"
|
||||
|
||||
[dependencies]
|
||||
jay-cmm = { version = "0.1.0", path = "../cmm" }
|
||||
jay-formats = { version = "0.1.0", path = "../formats" }
|
||||
jay-utils = { version = "0.1.0", path = "../utils" }
|
||||
jay-cmm = { path = "../cmm" }
|
||||
jay-formats = { path = "../formats" }
|
||||
jay-utils = { path = "../utils" }
|
||||
|
||||
blake3 = "1.8.2"
|
||||
linearize = { version = "0.1.3", features = ["derive"] }
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
[package]
|
||||
name = "jay-pango"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
build = "build.rs"
|
||||
|
||||
[dependencies]
|
||||
jay-geometry = { version = "0.1.0", path = "../geometry" }
|
||||
jay-geometry = { path = "../geometry" }
|
||||
|
||||
thiserror = "2.0.11"
|
||||
uapi = "0.2.13"
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
[package]
|
||||
name = "jay-pr-caps"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
jay-utils = { version = "0.1.0", path = "../utils" }
|
||||
jay-utils = { path = "../utils" }
|
||||
|
||||
opera = "1.0.1"
|
||||
parking_lot = "0.12.1"
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
[package]
|
||||
name = "jay-sighand"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
jay-async-engine = { version = "0.1.0", path = "../async-engine" }
|
||||
jay-io-uring = { version = "0.1.0", path = "../io-uring" }
|
||||
jay-utils = { version = "0.1.0", path = "../utils" }
|
||||
jay-async-engine = { path = "../async-engine" }
|
||||
jay-io-uring = { path = "../io-uring" }
|
||||
jay-utils = { path = "../utils" }
|
||||
|
||||
log = { version = "0.4.20", features = ["std"] }
|
||||
thiserror = "2.0.11"
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
[package]
|
||||
name = "jay-theme"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
jay-cmm = { version = "0.1.0", path = "../cmm" }
|
||||
jay-config = { version = "1.10.0", path = "../jay-config" }
|
||||
jay-gfx-types = { version = "0.1.0", path = "../gfx-types" }
|
||||
jay-utils = { version = "0.1.0", path = "../utils" }
|
||||
jay-cmm = { path = "../cmm" }
|
||||
jay-config = { path = "../jay-config" }
|
||||
jay-gfx-types = { path = "../gfx-types" }
|
||||
jay-utils = { path = "../utils" }
|
||||
|
||||
linearize = { version = "0.1.3", features = ["derive"] }
|
||||
num-traits = "0.2.17"
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
[package]
|
||||
name = "jay-time"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
uapi = "0.2.13"
|
||||
|
|
|
|||
|
|
@ -1,15 +1,15 @@
|
|||
[package]
|
||||
name = "jay-toml-config"
|
||||
version = "0.12.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
description = "Internal dependency of the Jay compositor"
|
||||
repository = "https://github.com/mahkoh/jay"
|
||||
|
||||
[dependencies]
|
||||
jay-config = { version = "1.10.0", path = "../jay-config" }
|
||||
jay-config-schema = { version = "0.1.0", path = "../jay-config-schema" }
|
||||
jay-toml = { version = "0.1.0", path = "../toml-parser" }
|
||||
jay-config = { path = "../jay-config" }
|
||||
jay-config-schema = { path = "../jay-config-schema" }
|
||||
jay-toml = { path = "../toml-parser" }
|
||||
log = "0.4.14"
|
||||
thiserror = "2.0.11"
|
||||
error_reporter = "1.0.0"
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
[package]
|
||||
name = "jay-toml"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
description = "Internal TOML parser used by Jay"
|
||||
repository = "https://github.com/mahkoh/jay"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,8 @@
|
|||
[package]
|
||||
name = "toml-spec"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
serde = { version = "1.0.197", features = ["derive"] }
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
[package]
|
||||
name = "jay-tracy"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
ahash = { version = "0.8.7", optional = true }
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
[package]
|
||||
name = "jay-tree-types"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
jay-config = { version = "1.10.0", path = "../jay-config" }
|
||||
jay-utils = { version = "0.1.0", path = "../utils" }
|
||||
jay-config = { path = "../jay-config" }
|
||||
jay-utils = { path = "../utils" }
|
||||
|
||||
linearize = { version = "0.1.3", features = ["derive"] }
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
[package]
|
||||
name = "jay-udmabuf"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
jay-allocator = { version = "0.1.0", path = "../allocator" }
|
||||
jay-formats = { version = "0.1.0", path = "../formats" }
|
||||
jay-utils = { version = "0.1.0", path = "../utils" }
|
||||
jay-video-types = { version = "0.1.0", path = "../video-types" }
|
||||
jay-allocator = { path = "../allocator" }
|
||||
jay-formats = { path = "../formats" }
|
||||
jay-utils = { path = "../utils" }
|
||||
jay-video-types = { path = "../video-types" }
|
||||
|
||||
log = "0.4.20"
|
||||
thiserror = "2.0.11"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "jay-units"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
description = "Shared unit types for Jay"
|
||||
repository = "https://github.com/mahkoh/jay"
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
[package]
|
||||
name = "jay-utils"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
jay-config = { version = "1.10.0", path = "../jay-config" }
|
||||
jay-config = { path = "../jay-config" }
|
||||
|
||||
ahash = "0.8.7"
|
||||
arrayvec = "0.7.4"
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
[package]
|
||||
name = "jay-video-types"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
jay-formats = { version = "0.1.0", path = "../formats" }
|
||||
jay-utils = { version = "0.1.0", path = "../utils" }
|
||||
jay-formats = { path = "../formats" }
|
||||
jay-utils = { path = "../utils" }
|
||||
|
||||
arrayvec = "0.7.4"
|
||||
uapi = "0.2.13"
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
[package]
|
||||
name = "jay-wheel"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
jay-async-engine = { version = "0.1.0", path = "../async-engine" }
|
||||
jay-io-uring = { version = "0.1.0", path = "../io-uring" }
|
||||
jay-time = { version = "0.1.0", path = "../time" }
|
||||
jay-utils = { version = "0.1.0", path = "../utils" }
|
||||
jay-async-engine = { path = "../async-engine" }
|
||||
jay-io-uring = { path = "../io-uring" }
|
||||
jay-time = { path = "../time" }
|
||||
jay-utils = { path = "../utils" }
|
||||
|
||||
log = { version = "0.4.20", features = ["std"] }
|
||||
thiserror = "2.0.11"
|
||||
|
|
|
|||
|
|
@ -1,15 +1,15 @@
|
|||
[package]
|
||||
name = "jay-wire-buf"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
jay-io-uring = { version = "0.1.0", path = "../io-uring" }
|
||||
jay-time = { version = "0.1.0", path = "../time" }
|
||||
jay-units = { version = "0.1.0", path = "../units" }
|
||||
jay-utils = { version = "0.1.0", path = "../utils" }
|
||||
jay-wire-types = { version = "0.1.0", path = "../wire-types" }
|
||||
jay-io-uring = { path = "../io-uring" }
|
||||
jay-time = { path = "../time" }
|
||||
jay-units = { path = "../units" }
|
||||
jay-utils = { path = "../utils" }
|
||||
jay-wire-types = { path = "../wire-types" }
|
||||
|
||||
bstr = { version = "1.9.0", default-features = false, features = ["std"] }
|
||||
smallvec = { version = "1.11.1", features = ["const_generics", "const_new", "union"] }
|
||||
|
|
|
|||
|
|
@ -1,7 +1,8 @@
|
|||
[package]
|
||||
name = "wire-to-xml"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.79"
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
[package]
|
||||
name = "jay-wire-types"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
[package]
|
||||
name = "jay-xcon"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
jay-bufio = { version = "0.1.0", path = "../bufio" }
|
||||
jay-io-uring = { version = "0.1.0", path = "../io-uring" }
|
||||
jay-utils = { version = "0.1.0", path = "../utils" }
|
||||
jay-bufio = { path = "../bufio" }
|
||||
jay-io-uring = { path = "../io-uring" }
|
||||
jay-utils = { path = "../utils" }
|
||||
|
||||
bstr = { version = "1.9.0", default-features = false, features = ["std"] }
|
||||
log = { version = "0.4.20", features = ["std"] }
|
||||
|
|
|
|||
|
|
@ -1,7 +1,8 @@
|
|||
[package]
|
||||
name = "xml-to-wire"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
quick-xml = "0.39.0"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue