-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
44 lines (40 loc) · 1.22 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "catacomb"
version = "0.1.0"
description = "A Wayland mobile compositor"
authors = ["Christian Duerr <[email protected]>"]
repository = "https://github.com/catacombing/catacomb"
rust-version = "1.80.1"
license = "GPL-3.0"
edition = "2021"
[workspace]
members = ["catacomb_ipc"]
[features]
default = []
profiling = ["dep:profiling", "dep:puffin_http"]
[dependencies.smithay]
git = "https://github.com/smithay/smithay"
default-features = false
features = [
"use_system_lib",
"backend_drm",
"backend_gbm",
"backend_libinput",
"backend_udev",
"backend_session_libseat",
"renderer_gl",
]
[dependencies]
calloop = { version = "0.14.0", features = ["signals"] }
catacomb_ipc = { version = "0.1.0", path = "./catacomb_ipc", features = ["clap", "smithay"] }
clap = { version = "4.2.3", features = ["derive", "wrap_help"] }
dirs = "5.0.0"
libc = "0.2.123"
profiling = { version = "1.0.14", optional = true, features = ["profile-with-puffin"] }
puffin_http = { version = "0.16.0", optional = true }
serde_json = "1.0.85"
serde = { version = "1.0.144", features = ["derive"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
udev = "0.9.1"
indexmap = "2.5.0"