-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
77 lines (70 loc) · 2.66 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
[package]
name = "oku"
version = "0.1.0"
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 = "A Web browser with an emphasis on local-first data storage"
repository = "https://github.com/OkuBrowser/oku"
homepage = "https://okubrowser.github.io/"
readme = "README.md"
resolver = "2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = { version = "0.4.38", features = ["unstable-locales", "serde"] }
cid = "0.11.1"
directories-next = "2.0.0"
futures = "0.3.31"
gdk = { version = "*", package = "gdk4", features = ["v4_14"] }
gio = { version = "*", features = ["v2_80"] }
glib = { version = "*", features = ["v2_80"] }
glib-macros = { version = "*" }
gtk = { version = "*", package = "gtk4", features = ["gnome_47"], default-features = false }
ipfs = { git = "https://github.com/dariusc93/rust-ipfs.git", branch = "libp2p-next", package = "rust-ipfs"}
libadwaita = { version = "*", 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 = "*" }
url = "2.5.3"
tokio = { version = "1.41.1", features = ["full"] }
tokio-stream = "0.1.16"
webkit2gtk = { version = "*", package = "webkit6", features = ["v2_44"] }
tree_magic_mini = { version = "3.1.6", features = ["with-gpl-data"] }
open = "5.3.0"
env_logger = "0.11.5"
log = "0.4.22"
toml = "0.8.19"
serde = "1.0.215"
uuid = { version = "1.11.0", features = ["v7", "fast-rng", "serde"] }
miette = "7.2.0"
html-escape = "0.2.13"
bytes = "1.8.0"
native_db = "0.8.1"
native_model = "0.4.20"
rayon = "1.10.0"
tantivy = "0.22.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"
[profile.release]
codegen-units = 1
opt-level = 3
lto = true
debug = 0
panic = 'abort'
[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" }