-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
79 lines (74 loc) · 2.06 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
[workspace]
members = [
"config",
"controller",
# "hyphae",
"ipfs-unixfs",
"local-dev-environment/desktop/rfm69-service",
"local-storage",
"messages",
"myceli",
"smalog",
"testing/udp_forward",
"transports",
"watcher"
]
[workspace.package]
version = "0.7.0"
edition = "2021"
license = "Apache-2.0/MIT"
rust-version = "1.70.0"
repository = "https://github.com/ipfs-shipyard/space"
[workspace.dependencies]
# External deps
anyhow = { version = "1.0.71", default-features = false, features = ["backtrace", "std"] }
assert_fs = "1.0.13"
async-recursion = "1.0.4"
async-stream = "0.3.3"
blake2 = { version = "0.10.6", default-features = false }
bytes = "1.1"
cid = { version = "0.9", default-features = false, features = ["scale-codec"] }
clap = { version = "4.0.15", features = ["derive"] }
derive-error = "0.0.5"
env_logger = "0.10.0"
figment = { version = "0.10", features = ["toml"] }
file-hashing = "0.1.1"
futures = "0.3.24"
libipld = { version = "0.15", default-features = false, features = ["dag-pb", "dag-cbor", "dag-json"] }
log = "0.4.19"
multihash = "0.18.1"
num_enum = "0.5.7"
parity-scale-codec = { version = "3.0.0", default-features = false, features = ["derive", "std"] }
parity-scale-codec-derive = "3.1.3"
proptest = "1.1.0"
prost = "0.11"
prost-build = "0.11.1"
rand = "0.8.5"
reqwest = { version = "0.11.10", default-features = false }
rusqlite = { version = "0.28.0", features = ["bundled"] }
serde = "1.0.163"
serde_derive = "1.0.163"
serde_json = "1.0.87"
tempfile = "3.3"
thiserror = "1.0.40"
tokio = "1.28.1"
tokio-serial = "5.4"
tokio-util = "0.7.8"
toml = { version = "0.7.3", default-features = false }
# Internal deps
config = { path = "config" }
ipfs-unixfs = { path = "ipfs-unixfs" }
local-storage = { path = "local-storage" }
messages = { path = "messages" }
smalog = { path = "smalog" }
transports = { path = "transports" }
[profile.small]
inherits = "release"
lto = "fat"
[profile.small.package.myceli]
opt-level = "s"
debug = false
strip = "symbols"
debug-assertions = false
overflow-checks = false
incremental = false