-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (30 loc) · 756 Bytes
/
Cargo.toml
File metadata and controls
34 lines (30 loc) · 756 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
[package]
name = "render_engine"
version = "0.1.0-alpha.3"
edition = "2021"
description = "A Metal-based 3D rendering engine for macOS"
license = "MIT"
repository = "https://github.com/gituser12981u2/3d-engine.git"
documentation = "https://docs.rs/render_engine"
readme = "README.md"
keywords = ["graphics", "rendering", "metal", "3d"]
categories = ["graphics", "rendering", "game-engines"]
build = "build.rs"
[lib]
path = "src/lib.rs"
crate-type = ["rlib"]
[dependencies]
cocoa = "0.26.0"
core-graphics = "0.23.2"
core-graphics-types = "0.1.3"
env_logger = "0.11.5"
glam = "0.28.0"
log = "0.4.22"
metal = "0.29.0"
num-traits = "0.2.19"
objc = "0.2.7"
raw-window-handle = "0.6.2"
winit = "0.29.15"
[build-dependencies]
[features]
skip_metal_tests = []