-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
110 lines (103 loc) · 2.5 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
[package]
name = "client"
version = "0.1.1"
authors = [
"Andrew Wheeler <[email protected]>",
"Sherwin Salonga",
"S.J.R. van Schaik",
]
license = "MIT OR Apache-2.0"
edition = "2021"
[dependencies]
thiserror = "1.0.63"
winit = { version = "0.30.5", features = ["serde", "rwh_05"] }
image = "0.25.2"
tokio = { version = "1.40.0", features = ["full"] }
log = { version = "0.4.22", default-features = false }
backtrace = "0.3.73"
chrono = { version = "0.4.38", disable-defaults = true, features = [
"clock",
"serde",
"std",
] }
hecs = { version = "0.10.5", features = [
"column-serialize",
"row-serialize",
"macros",
] }
serde = { version = "1.0.209", features = ["derive"] }
serde_json = "1.0.127"
indexmap = "2.4.0"
rodio = "0.19.0"
slab = "0.4.9"
arboard = "3.4.0"
mio = { version = "1.0.2", features = ["os-poll", "net"] }
bytey = { version = "0.3.0", git = "https://github.com/Stefanowhb/bytey.git" }
mmap_bytey = "0.2.0"
pki-types = { package = "rustls-pki-types", version = "1.8.0", features = ["std"] }
rcgen = { version = "0.13.1", features = [
"pem",
"ring",
], default-features = false }
rustls = { version = "0.23.12", default-features = false, features = [
"logging",
"ring",
"std",
"tls12",
] }
toml = "0.8.19"
rustls-pemfile = "2.1.3"
webpki-roots = "0.26.3"
webpki = "0.22.4"
regex = "1.10.6"
educe = { version = "0.6.0", default-features = false, features = [
"Debug",
"PartialEq",
"Default",
] }
rand = "0.8.5"
bit_op = "0.1.1"
slotmap = "1.0.7"
lru = "0.12.4"
speedy = "0.8.7"
futures = "0.3.30"
ahash = "0.8.11"
[dependencies.camera]
package = "ascending_camera"
#git = "https://github.com/AscendingCreations/AscendingLibraries"
#path = "../AscendingLibraries/camera"
version = "0.5.0"
[dependencies.input]
package = "ascending_input"
#git = "https://github.com/AscendingCreations/AscendingLibraries"
#path = "../AscendingLibraries/input"
version = "0.3.1"
[dependencies.graphics]
package = "ascending_graphics"
#git = "https://github.com/AscendingCreations/AscendingLibraries"
#path = "../AscendingLibraries/graphics"
version = "0.13.0"
[profile.dev]
opt-level = 0
debug = true
debug-assertions = true
overflow-checks = true
strip = "none"
lto = false
incremental = true
panic = 'unwind'
codegen-units = 256
rpath = false
[profile.release]
opt-level = 3
debug = false
strip = "none"
debug-assertions = false
overflow-checks = true
lto = true
panic = 'unwind'
incremental = true
codegen-units = 256
rpath = false
[profile.dev.package."*"]
opt-level = 2