This repository has been archived by the owner on Jul 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
81 lines (63 loc) · 1.71 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[package]
name = "emergent"
version = "0.1.0"
authors = ["Armin Sander <armin@replicator.org>"]
edition = "2018"
[lib]
name = "emergent"
path = "src/lib/lib.rs"
[workspace]
exclude = ["rust-skia", "vulkano", "watchexec"]
members = [
"config",
"drawing",
"layout",
"presentation",
"presenter",
"terminal",
"ui",
"view"
]
[dependencies]
# project local dependencies
tears = { path = "tears" }
emergent-drawing = { path = "drawing" }
emergent-terminal = { path = "terminal" }
emergent-config = { path = "config" }
emergent-presentation = { path = "presentation" }
emergent-presenter = { path = "presenter" }
emergent-ui = { path = "ui" }
emergent-view = { path = "view" }
# channels
crossbeam-channel = "0.4"
# skia
skia-safe = { path = "rust-skia/skia-safe", features = ["vulkan", "textlayout"] }
# window & rendering
winit = { version = "0.21", features = ["serde"] }
# we need a custom vulkano build that sets the request Vulkan instance version
# to the same version as the physical device's version,
# because of the version consistency Skia expects.
vk-sys = { path = "vulkano/vk-sys" }
vulkano = { path = "vulkano/vulkano", version = "0.17" }
vulkano-win = { path = "vulkano/vulkano-win", version = "0.17" }
vulkano-shaders = { path = "vulkano/vulkano-shaders", version = "0.17" }
# logging
log = "0.4"
env_logger = "0.7"
# serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# test runner
cargo = "0.42.0"
failure = "0.1"
shh = "1.0"
cargo_metadata = "0.9"
# test watcher
cargo-watch = "7.2"
clap = "2.33"
watchexec = "=1.10.3"
# for RawEvent that watchexec uses
notify = "4.0.12"
[patch.crates-io]
# needed to parameterize the TestWatcher.
watchexec = { path = "watchexec" }