-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
31 lines (28 loc) · 896 Bytes
/
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
[package]
name = "hyperspace-server"
version = "0.1.0"
authors = ["Franz Heinzmann (Frando) <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "hyperspace-server"
path = "src/bin.rs"
[dependencies]
hyperspace-common = { path = "../common" }
hypercore-replicator = { path = "../replicator" }
corestore = { path = "../corestore" }
hyperswarm = { git = "https://github.com/Frando/hyperswarm-rs.git", branch = "main" }
hrpc = { git = "https://github.com/Frando/hrpc-rs.git" }
# hrpc = { path = "../../hrpc" }
async-std = { version = "1.9", features = ["attributes", "unstable"] }
env_logger = "0.7.1"
futures = "0.3.5"
log = "0.4.11"
async-trait = "0.1.36"
anyhow = "1.0.31"
prost = "0.6.1"
hex = "0.4"
clap = "3.0.0-beta.1"
dirs = "3.0.1"
async-signals = "0.3.1"