diff options
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -21,9 +21,14 @@ strip = true debug = 0 opt-level = 2 +[workspace.lints.clippy] +all = "deny" +pedantic = "deny" +nursery = "deny" + [workspace.dependencies] -teleia = { git = "https://github.com/lcolonq/teleia" } # engine -# teleia = { path = "../teleia/crates/teleia" } # engine +# teleia = { git = "https://github.com/lcolonq/teleia" } # engine +teleia = { path = "../teleia/crates/teleia" } # engine glfw = { git = "https://github.com/lcolonq/glfw-rs", features = ["serde"] } # window management glam = { version = "0.29.2", features = ["serde"] } # linear algebra glow = { version = "=0.13.1", features = [] } # gl bindings @@ -44,6 +49,7 @@ byteorder = "1.5.0" # read little-endian numbers image = { version = "0.25.10", default-features = false, features = ["jpeg", "png", "webp"] } # read and write image files png = "*" # encode apng cpal = "*" # record microphone +nokhwa = "*" # record webcam redis = "*" # database web-image-meta = "*" # edit image metadata uuid = {version = "*", features = ["v4"]} # generate uuids |
