forked from zoeyfyi/Boop-GTK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
78 lines (70 loc) · 1.55 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
[package]
name = "boop-gtk"
build = "build.rs"
version = "1.7.1"
authors = ["Zoey Sheffield"]
edition = "2018"
description = """A scriptable scratchpad for developers
Port of @IvanMathy's Boop to GTK
"""
license = "MIT"
homepage = "https://boop-gtk.zoey.fyi"
repository = "https://github.com/zoeyfyi/boop-gtk/"
keywords = ["gtk", "text-editor", "editor", "linux", "javascript"]
categories = ["text-editors"]
exclude = [
"submodules/flatpak-builder-tools",
"submodules/svg-stroke-to-path",
"flatpak",
"snap"
]
[profile.dev]
lto = "off"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# GTK
glib = "0.10"
gdk = "0.13"
gdk-pixbuf = "0.9"
pango = "0.9"
sourceview = { version = "0.9", features = ["v3_16"] }
# GTK utils
gladis = "0.4.1"
gladis_proc_macro = "0.4.1"
shrinkwraprs = "0.3.0"
# V8
rusty_v8 = "0.22.1"
# JSON
serde = { version = "1.0", features = ["derive"] }
serde_jsonrc = "0.1"
toml = "0.5"
# Logging
log = "0.4.14"
env_logger = "0.8.3"
# Fuzzy search
fuse-rust = "0.2.0"
# File system
open = "1.6.0"
xdg = "2.2.0"
notify = "5.0.0-pre.6"
config = "0.9"
# Misc utils
lazy_static = "1.4.0"
once_cell = "1.7.2"
rust-embed = { version = "5.9.0", features = ["debug-embed"] }
dirty2 = "0.1.0"
eyre = "0.6.5"
color-eyre = "0.5.11"
crossbeam = "0.8.0"
fs_extra = "1.2.0"
[dependencies.gtk]
version = "0.9"
features = ["v3_22"]
[dependencies.gio]
version = "0.9"
features = ["v2_44"]
[dev-dependencies]
tempfile = "3.2.0"
directories = "3.0" # TODO: remove
[build-dependencies]
fs_extra = "1.2.0"