-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
91 lines (86 loc) · 2.08 KB
/
Copy pathCargo.toml
File metadata and controls
91 lines (86 loc) · 2.08 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
83
84
85
86
87
88
89
90
91
[package]
name = "glorp"
version = "0.7.4"
edition = "2021"
license = "MIT"
[[bin]]
name = "glorp"
path = "src/main.rs"
[features]
# `dev-preview` enables the hidden `glorp dev-preview` design-review command.
# Default-on for local development; npm release builds pass
# `--no-default-features` to strip it from the published binary.
default = ["dev-preview"]
dev-preview = []
[dependencies]
clap = { version = "4", features = ["derive", "env"] }
crossterm = "0.28"
ratatui = "0.29"
rusqlite = { version = "0.32", features = ["bundled"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tachyonfx = "0.18"
taffy = { version = "0.10.1", default-features = false, features = ["std", "taffy_tree", "flexbox"] }
terminal-light = "1"
thiserror = "1"
tempfile = "3"
rand = { version = "0.8", default-features = false, features = ["std_rng"] }
rand_pcg = "0.3"
time = { version = "0.3", features = ["serde", "formatting", "parsing", "local-offset", "macros"] }
toml = "0.8"
unicode-width = "0.2"
wait-timeout = "0.2"
which = "7"
[target.'cfg(target_os = "macos")'.dependencies]
objc2 = "0.5"
objc2-foundation = { version = "0.2", features = [
"NSAttributedString",
"NSDictionary",
"NSGeometry",
"NSRange",
"NSRunLoop",
"NSString",
"NSThread",
"NSTimer",
"NSUserDefaults",
"NSValue",
] }
objc2-app-kit = { version = "0.2", features = [
"NSAppearance",
"NSApplication",
"NSAttributedString",
"NSBezierPath",
"NSButton",
"NSColor",
"NSControl",
"NSFont",
"NSFontDescriptor",
"NSGraphics",
"NSGraphicsContext",
"NSImage",
"NSMenu",
"NSMenuItem",
"NSParagraphStyle",
"NSPopover",
"NSResponder",
"NSRunningApplication",
"NSScreen",
"NSScrollView",
"NSStatusBar",
"NSStatusBarButton",
"NSStatusItem",
"NSStringDrawing",
"NSText",
"NSTextContainer",
"NSTextStorage",
"NSTextView",
"NSView",
"NSViewController",
"NSWindow",
"NSEvent",
] }
[dev-dependencies]
assert_cmd = "2"
insta = { version = "1", features = ["yaml"] }
predicates = "3"
proptest = "1"