-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
124 lines (120 loc) · 2.75 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
[package]
name = "keylime"
version = "0.1.0"
edition = "2021"
[features]
terminal_emulator_debug = []
[dependencies]
unicode-width = "0.2"
basic-toml = "0.1"
serde = { version = "1.0", features = ["derive"] }
[target.'cfg(target_os = "windows")'.dependencies]
windows-core = "0.58"
windows = { version = "0.58", features = [
"implement",
"Foundation_Numerics",
"Win32_Graphics_DirectWrite",
"Win32_Graphics_Direct2D",
"Win32_Graphics_Direct2D_Common",
"Win32_Graphics_Direct3D",
"Win32_Graphics_Direct3D_Fxc",
"Win32_Graphics_Direct3D11",
"Win32_Graphics_Dxgi_Common",
"Win32_Graphics_Gdi",
"Win32_Graphics_Dwm",
"Win32_Graphics_Imaging",
"Win32_System_Console",
"Win32_System_LibraryLoader",
"Win32_System_Performance",
"Win32_System_Pipes",
"Win32_System_DataExchange",
"Win32_System_Memory",
"Win32_System_Threading",
"Win32_System_Ole",
"Win32_System_Com",
"Win32_System_IO",
"Win32_Storage_FileSystem",
"Win32_Security",
"Win32_UI_Shell",
"Win32_UI_HiDpi",
"Win32_UI_WindowsAndMessaging",
"Win32_UI_Input_KeyboardAndMouse",
] }
[target.'cfg(target_os = "macos")'.dependencies]
libc = "0.2"
objc2 = "0.6"
objc2-app-kit = { version = "0.3", features = [
"NSApplication",
"NSRunningApplication",
"NSResponder",
"NSWindow",
"NSGraphics",
"NSColor",
"NSEvent",
"NSOpenPanel",
"NSSavePanel",
"NSPanel",
"NSAlert",
"NSControl",
"NSButton",
"NSPasteboard",
"NSView",
"NSAppearance",
"NSMenu",
"NSMenuItem",
"NSWorkspace",
"block2",
"objc2-quartz-core",
"objc2-core-foundation",
] }
objc2-foundation = { version = "0.3", features = [
"NSDate",
"NSThread",
"NSRunLoop",
"NSTimer",
"objc2-core-foundation",
] }
objc2-metal = { version = "0.3", features = [
"MTLAccelerationStructureTypes",
"MTLCommandQueue",
"MTLCommandBuffer",
"MTLCommandEncoder",
"MTLRenderCommandEncoder",
"MTLRenderPipeline",
"MTLRenderPass",
"MTLPixelFormat",
"MTLDevice",
"MTLLibrary",
"MTLDrawable",
"MTLBuffer",
"MTLResource",
"MTLStageInputOutputDescriptor",
"MTLTexture",
"MTLTypes",
] }
objc2-quartz-core = { version = "0.3", features = [
"CAMetalLayer",
"CATransaction",
"objc2-metal",
] }
objc2-core-text = { version = "0.3", features = [
"CTFont",
"CTFontTraits",
"CTFontDescriptor",
"CTFrame",
"CTFramesetter",
"CTTypesetter",
"CTLine",
"CTRun",
"CTRunDelegate",
"CTStringAttributes",
"objc2-core-graphics",
] }
objc2-core-graphics = { version = "0.3", features = [
"CGAffineTransform",
"CGPath",
"CGColorSpace",
"CGContext",
"CGBitmapContext",
] }
objc2-core-foundation = "0.3"