-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
80 lines (75 loc) · 2.05 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
79
80
[package]
name = "fuzzr"
version = "0.0.7"
authors = [
"Hunter Trujillo <cryptoquick@pm.me>",
"David Croisant <kn0wmad@protonmail.com>",
]
edition = "2021"
description = "P2P platform for publishing content, self-hosting, decentralized curation, and more."
documentation = "https://github.com/FuzzrNet/Fuzzr/tree/main/docs"
homepage = "https://fuzzr.net"
repository = "https://github.com/FuzzrNet/Fuzzr"
license = "Unlicense"
keywords = ["ipfs", "p2p", "gui", "self-hosted"]
categories = [
"cryptography",
"filesystem",
"multimedia",
"text-editors",
"web-programming",
]
exclude = ["docs", ".github", ".vscode"]
[build]
incremental = true
[profile.release]
# strip = "symbols" # https://github.com/rust-lang/rust/issues/72110
lto = true
codegen-units = 1
[dependencies]
## Debugging
pretty_env_logger = "0.4.0"
log = "0.4"
anyhow = "1.0"
## Serialization
serde = { version = "1.0", features = ["derive"] }
## System
async-std = { version = "1.10", features = ["attributes"] }
rayon = "1.5"
crossbeam-utils = "0.8.4"
par-stream = { version = "0.10", features = ["runtime-async-std"] }
directories-next = "2.0.0"
lockfree = "0.5.1"
iced = { version = "0.4.2", features = [
"wgpu",
"default_system_font",
"image",
"async-std",
"pure",
], git = "https://github.com/iced-rs/iced.git", rev = "d1505a98d967f36679f8b7d98347ba03a4c2af1c" }
## UI
iced_native = { version = "0.5.1", git = "https://github.com/iced-rs/iced.git", rev = "d1505a98d967f36679f8b7d98347ba03a4c2af1c" }
iced_futures = { version = "0.4.1", git = "https://github.com/iced-rs/iced.git", rev = "d1505a98d967f36679f8b7d98347ba03a4c2af1c" }
## Data
# reqwest = "0.10"
infer = "0.9.0"
walkdir = "2.3.2"
## IPFS
ipfs-embed = "0.23.0"
libipld = "=0.12.0"
libp2p-dns = "=0.32.0" # https://github.com/ipfs-rust/ipfs-embed/issues/110#issuecomment-1179619345
multihash = "=0.14.0"
# ipld-collections = "0.3.0"
## Image
image = "=0.23.14" # due to iced dependency
[dev-dependencies]
tempfile = "3.2.0"
criterion = "0.3.4"
[[bin]]
name = "fuzzr"
test = true
bench = false
#
# [[bench]]
# name = "ipfs"
# harness = false