-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
62 lines (56 loc) · 1.45 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
[package]
name = "demo"
version = "0.2.2"
authors = ["S.J.R. van Schaik", "Andrew Wheeler <genusistimelord@gmail.com>"]
license = "MIT OR Apache-2.0"
edition = "2021"
resolver = "2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
thiserror = "1.0.63"
winit = { version = "0.30.5", features = ["serde"] }
tokio = { version = "1.40.0", features = ["full"] }
serde = { version = "1.0.209", features = ["derive"] }
log = "0.4.22"
backtrace = "0.3.73"
futures = "0.3.30"
[dependencies.camera]
#git = "https://github.com/AscendingCreations/AscendingLibraries"
#rev = "f2324c1"
#path = "../AscendingLibraries/camera"
package = "ascending_camera"
version = "0.5.0"
[dependencies.input]
#git = "https://github.com/AscendingCreations/AscendingLibraries"
#rev = "f2324c1"
#path = "../AscendingLibraries/input"
package = "ascending_input"
version = "0.4.0"
[dependencies.graphics]
#git = "https://github.com/AscendingCreations/AscendingLibraries"
#rev = "f2324c1"
#path = "../AscendingLibraries/graphics"
package = "ascending_graphics"
version = "0.18.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