-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
55 lines (48 loc) · 1.29 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
45
46
47
48
49
50
51
52
53
54
55
[workspace]
resolver = "2"
members = ["app", "workspace", "ui", "theme", "com"]
[workspace.package]
authors = ["Per Johansson <per@doom.fish>"]
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
[workspace.lints.clippy]
all = "warn"
[workspace.dependencies]
# Zed
gpui = { git = "https://github.com/zed-industries/zed" }
refineable = { git = "https://github.com/zed-industries/zed" }
ui = { git = "https://github.com/zed-industries/zed" }
derive_more = { version = "1", features = [
"deref",
"display",
"error",
"deref_mut",
] }
serde = { version = "1", features = ["derive"] }
# External
hex = "0.4"
toml = { version = "0.8" }
serde_yml = { version = "0.0.12" }
palette = { version = "0.7", features = ["serializing"] }
# gstreamer
gst = { package = "gstreamer", version = "0.23" }
gst-app = { package = "gstreamer-app", version = "0.23" }
gst-base = { package = "gstreamer-base", version = "0.23" }
gst-video = { package = "gstreamer-video", version = "0.23" }
gst-audio = { package = "gstreamer-audio", version = "0.23" }
byte-slice-cast = "1"
# crate
theme = { path = "theme" }
app = { path = "app" }
com = { path = "com" }
workspace = { path = "workspace" }
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
opt-level = "z"
strip = true
[profile.dev]
debug = 0
# gstreamer