-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (40 loc) · 1.03 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
[package]
name = "Yoda"
version = "0.10.0"
edition = "2021"
license = "MIT"
readme = "README.md"
description = "Browser for Gemini Protocol"
keywords = ["gemini", "gemini-protocol", "gtk", "browser", "client"]
categories = ["network-programming", "gui"]
repository = "https://github.com/YGGverse/Yoda"
# homepage = "https://yggverse.github.io"
[dependencies.adw]
package = "libadwaita"
version = "0.7.0"
features = ["v1_5"]
[dependencies.gtk]
package = "gtk4"
version = "0.9.4"
features = ["gnome_46"]
[dependencies.sqlite]
package = "rusqlite"
version = "0.32.1"
[dependencies.sourceview]
package = "sourceview5"
version = "0.9.1"
[dependencies]
ansi-parser = "0.9.1"
ggemini = "0.14.0"
ggemtext = "0.3.0"
indexmap = "2.7.0"
itertools = "0.14.0"
libspelling = "0.3.0"
openssl = "0.10.68"
plurify = "0.1.1"
syntect = "5.2.0"
# development
[patch.crates-io]
ggemini = { git = "https://github.com/YGGverse/ggemini.git" }
# ggemtext = { git = "https://github.com/YGGverse/ggemtext.git" }
# plurify = { git = "https://github.com/YGGverse/plurify.git" }