-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
110 lines (103 loc) · 2.96 KB
/
Cargo.toml
File metadata and controls
110 lines (103 loc) · 2.96 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
[package]
name = "oku"
version = "0.1.1"
authors = ["Emil Sayahi <limesayahi@gmail.com>"]
edition = "2021"
exclude = [
"/.github/**/*",
"/.cargo/**/*",
"/branding/**/*",
"/rust-toolchain",
"/.gitignore",
"/.whitesource",
"/renovate.json",
"/CODE_OF_CONDUCT.md",
"/CONTRIBUTING.md",
"/LICENSE.md",
"/SECURITY.md",
"/COPYING",
"/NOTICE",
]
license = "AGPL-3.0-or-later"
description = "Browse & express yourself"
repository = "https://github.com/OkuBrowser/oku"
homepage = "https://okubrowser.github.io/"
readme = "README.md"
resolver = "3"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = { version = "0.4.44", features = ["unstable-locales", "serde"] }
cid = "0.11.1"
directories-next = "2.0.0"
futures = "0.3.32"
gdk = { version = "0.10.3", package = "gdk4", features = ["v4_14"] }
gio = { version = "0.21.5", features = ["v2_80"] }
glib = { version = "0.21.5", features = ["v2_80"] }
glib-macros = { version = "0.21.5" }
gtk = { version = "0.10.3", package = "gtk4", features = [
"gnome_47",
], default-features = false }
ipfs = { git = "https://github.com/dariusc93/rust-ipfs.git", rev = "5d442873fcf9a33571bc2a26f5d3a64bfc4ff71f", package = "rust-ipfs" }
libadwaita = { version = "0.8.1", features = ["v1_6", "gio_v2_80"] }
# oku-fs = { git = "https://github.com/OkuBrowser/oku-fs", features = ["fuse"] }
oku-fs = { path = "/home/emil/Documents/GitHub/oku-fs", features = ["fuse"] }
pango = { version = "0.21.5" }
url = "2.5.8"
tokio = { version = "1.49.0", features = ["full"] }
tokio-stream = "0.1.18"
webkit2gtk = { version = "0.5.0", package = "webkit6", features = ["v2_44"] }
tree_magic_mini = { version = "3.2.2", features = ["with-gpl-data"] }
open = "5.3.3"
env_logger = "0.11.9"
log = "0.4.29"
toml = "0.9.8"
serde = "1.0.228"
uuid = { version = "1.21.0", features = ["v7", "fast-rng", "serde"] }
miette = "7.6.0"
html-escape = "0.2.13"
bytes = "1.11.1"
native_db = "0.8.2"
native_model = "0.4.20"
rayon = "1.11.0"
tantivy = "0.25.0"
# vox = { path = "/home/emil/Documents/GitHub/vox", features = ["ram_provider"] }
vox = { git = "https://github.com/emmyoh/vox", features = ["ram_provider"] }
bs58 = "0.5.1"
showfile = { version = "0.1.1", features = ["gio"], default-features = false }
opengraph = "0.2.4"
[profile.release]
codegen-units = 1
opt-level = 3
lto = true
debug = 0
[package.metadata.deb]
section = "utility"
priority = "optional"
assets = [
[
"target/x86_64-unknown-linux-gnu/release/oku",
"usr/bin/",
"755",
],
[
"README.md",
"usr/share/doc/oku/README",
"644",
],
[
"COPYING",
"usr/share/doc/oku/COPYING",
"644",
],
[
"data/hicolor/**/*",
"/usr/share/icons/hicolor/",
"644",
],
]
[package.metadata.rpm]
package = "oku"
[package.metadata.rpm.cargo]
buildflags = ["--release"]
[package.metadata.rpm.targets]
oku = { path = "/usr/bin/oku" }