-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
36 lines (32 loc) · 1.7 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
[package]
name = "cmdchatter"
version = "0.1.0"
authors = ["Connor Turland <[email protected]>"]
edition = "2018"
# [lib]
# name = "builtin"
# crate-type = ["staticlib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = "1.0.104"
rustyline = "7.0.0"
tokio = { version = "0.2.11", features = [ "full" ] }
futures = "0.3.1"
human-panic = "1.0.3"
structopt = "0.3.11"
tracing = "=0.1.21"
holochain_p2p = {git = "https://github.com/holochain/holochain.git", branch = "add-signal-channel", package = "holochain_p2p"}
holochain_types = {git = "https://github.com/holochain/holochain.git", branch = "add-signal-channel", package = "holochain_types"}
holochain_zome_types = {git = "https://github.com/holochain/holochain.git", branch = "add-signal-channel", package = "holochain_zome_types"}
holochain_keystore = {git = "https://github.com/holochain/holochain.git", branch = "add-signal-channel", package = "holochain_keystore"}
holochain = {git = "https://github.com/holochain/holochain.git", branch = "add-signal-channel", package = "holochain"}
hdk3 = {git = "https://github.com/holochain/holochain.git", branch = "add-signal-channel", package = "hdk3"}
# holochain_p2p = { path = "../holochain/crates/holochain_p2p"}
# holochain_types = { path = "../holochain/crates/types"}
# holochain_zome_types = { path = "../holochain/crates/zome_types"}
# holochain_keystore = { path = "../holochain/crates/keystore"}
# holochain = { path = "../holochain/crates/holochain"}
# hdk3 = { path = "../holochain/crates/hdk"}
[patch.crates-io]
rkv = { git = "https://github.com/holochain/rkv.git", branch = "master" }
lmdb-rkv = { git = "https://github.com/holochain/lmdb-rs.git" }