-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
36 lines (34 loc) · 1.17 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 = "holochain-runner"
version = "0.7.12"
description = "a Holochain runtime binary with key management, good defaults, and Status Update events. Suitable for development and production environments"
authors = ["Connor Turland <[email protected]>", "Wesley Finck <[email protected]>", "Karl Bonnici <[email protected]>"]
license = "CAL-1.0"
repository = "https://github.com/lightningrodlabs/holochain-runner"
edition = "2021"
[dependencies]
structopt = "0.3"
base64 = "0.21"
serde = "1.0"
futures = "0.3"
human-panic = "1.2.0"
tracing = "0.1.26"
one_err = "0.0.8"
sodoken = "0.0.9"
tokio = { version = "1.32", features = ["full"] }
observability = "0.1.3"
either = "1.9.0"
holochain_util = "0.2.2"
holochain_p2p = "0.2.3-beta-rc.0"
holochain_types = "0.2.3-beta-rc.0"
holochain_zome_types = "0.2.3-beta-rc.0"
holochain_keystore = "0.2.3-beta-rc.0"
holochain_trace = "0.2.2"
holochain = "0.2.3-beta-rc.1"
hdk = "0.2.3-beta-rc.0"
contrafact = "0.2.0-rc.1"
# termination feature enables handling of SIGTERM events as well on unix
ctrlc = { version = "3.4.1", features = ["termination"] }
dotenvs = "0.1.0"
[features]
sqlite-encrypted = [ "holochain/sqlite-encrypted"]