TOML · 1150 bytes Raw Blame History
1 [package]
2 name = "ers"
3 version = "0.4.0"
4 edition = "2024"
5 description = "Window border renderer for tarmac"
6
7 [dependencies]
8 libc = "0.2"
9 serde = { version = "1", features = ["derive"] }
10 serde_json = "1"
11 tracing = "0.1"
12 tracing-subscriber = { version = "0.3", features = ["env-filter"] }
13 objc2 = { version = "0.6", default-features = false }
14 objc2-foundation = { version = "0.3", default-features = false, features = [
15 "NSGeometry",
16 "NSString",
17 "NSValue",
18 ] }
19 objc2-app-kit = { version = "0.3", default-features = false, features = [
20 "NSApplication",
21 "NSResponder",
22 "NSView",
23 "NSWindow",
24 "NSColor",
25 "NSColorSpace",
26 "NSGraphics",
27 "NSScreen",
28 "NSRunningApplication",
29 "objc2-core-foundation",
30 ] }
31 objc2-quartz-core = { version = "0.3", default-features = false, features = [
32 "CALayer",
33 "CAShapeLayer",
34 "objc2-core-foundation",
35 ] }
36 objc2-core-foundation = { version = "0.3", default-features = false, features = [
37 "CFCGTypes",
38 ] }
39 objc2-core-graphics = { version = "0.3", default-features = false, features = [
40 "CGColor",
41 "CGColorSpace",
42 "CGPath",
43 "CGDirectDisplay",
44 ] }