-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
82 lines (74 loc) · 1.62 KB
/
Copy pathCargo.toml
File metadata and controls
82 lines (74 loc) · 1.62 KB
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
[package]
name = "bs"
version = "0.1.0"
edition = "2024"
[dependencies]
bytemuck = "1.24.0"
env_logger = "0.11.8"
glam = { version = "0.30.9", features = ["bytemuck"] }
tobj = "4.0.3"
once_cell = "1.20"
block2 = "0.6"
# apple
objc2 = "0.6.3"
objc2-foundation = { version = "0.3.2", default-features = false, features = [
"std",
"NSString",
"NSDate",
"NSNotification",
"NSGeometry",
] }
# macOS UI (NSApplication, NSWindow)
objc2-app-kit = { version = "0.3.2", default-features = false, features = [
"std",
"NSApplication",
"NSGraphics",
"NSMenu",
"NSMenuItem",
"NSResponder",
"NSRunningApplication",
"NSView",
"NSViewController",
"NSWindow",
"NSWindowController",
"NSEvent",
"block2",
] }
# Metal + MetalKit (MTKView)
objc2-metal = { version = "0.3.2", default-features = false, features = [
"std",
"objc2-core-foundation",
"MTLAllocation",
"MTLDevice",
"MTLBuffer",
"MTLArgument",
"MTLCommandQueue",
"MTLCommandBuffer",
"MTLCommandEncoder",
"MTLBlitCommandEncoder",
"MTLRenderPipeline",
"MTLRenderCommandEncoder",
"MTLResource",
"MTLRenderPass",
"MTLLibrary",
"MTLPixelFormat",
"MTLDrawable",
"MTLTypes",
"MTLTexture",
"MTLAccelerationStructureTypes",
"MTLVertexDescriptor",
"MTLDepthStencil",
"MTLHeap",
"MTLBlitCommandEncoder"
] }
objc2-metal-kit = { version = "0.3.2", default-features = false, features = [
"std",
"objc2-app-kit",
"objc2-quartz-core",
"MTKView",
"MTKTextureLoader",
"block2",
] }
# MetalKit pulls some QuartzCore types in practice.
objc2-quartz-core = { version = "0.3.2", default-features = false, features = [] }
gltf = "1.4.1"