-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (33 loc) · 852 Bytes
/
Copy pathCargo.toml
File metadata and controls
39 lines (33 loc) · 852 Bytes
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
[workspace.package]
authors = ["Edward Taylor <dev@edt.nz>"]
license = " GPL-3.0-or-later"
homepage = "https://github.com/edeetee/ffgl-rs"
repository = "https://github.com/edeetee/ffgl-rs"
[workspace]
resolver = "2"
members = [
"example-raw",
"ffgl-glium",
"ffgl-core",
"ffgl-isf",
"build-common",
"example-sdfer", "shadertoy",
]
default-members = ["ffgl-core"]
# [lib]
# crate-type = ["lib"]
# panic = "abort"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace.dependencies]
gl = "0.14.0"
itertools = "0.12.0"
glium = "0.33.0"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
tracing = { version = "0.1.40", features = ["log"] }
anyhow = "1.0.79"
[profile.release]
debug = false
# strip = true
# lto = true
# codegen-units = 1
panic = "abort"