This repository was archived by the owner on Feb 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 266
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (58 loc) · 1.88 KB
/
Cargo.toml
File metadata and controls
60 lines (58 loc) · 1.88 KB
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
[package]
name = "sim2h"
version = "0.0.42-alpha5"
authors = ["Holochain Core Dev Team <devcore@holochain.org>"]
edition = "2018"
description = "A simulation of lib3h"
keywords = ["holochain", "holo", "p2p", "network", "simulation"]
categories = ["network-programming"]
license = "GPL-3.0-only"
readme = "README.md"
documentation = "https://github.com/holochain/sim2h"
repository = "https://github.com/holochain/sim2h"
[dependencies]
backtrace = "=0.3.27"
hcid = "=0.0.6"
holochain_persistence_api = "=0.0.13"
holochain_json_api = "=0.0.17"
futures = "=0.3.1"
lib3h = "=0.0.31"
lib3h_crypto_api = "=0.0.31"
lib3h_sodium = "=0.0.31"
lib3h_protocol = "=0.0.31"
lib3h_zombie_actor = "=0.0.31"
holochain_tracing = "=0.0.13"
holochain_core_types = { version = "=0.0.42-alpha5", path = "../core_types" }
holochain_locksmith = { version = "=0.0.42-alpha5", path = "../locksmith" }
holochain_metrics = { version = "=0.0.42-alpha5", path = "../metrics" }
holochain_walkman_types = { version = "=0.0.42-alpha5", path = "../walkman_types" }
holochain_common = { version = "=0.0.42-alpha5", path = "../common" }
holochain_tracing_macros = "0.0.14"
in_stream = { version = "=0.0.42-alpha5", path = "../in_stream" }
uuid = { version = "0.4", features = ["v4"] }
log = "=0.4.8"
env_logger = "=0.6.1"
lazy_static = "=1.4.0"
nanoid = "=0.2.0"
num_cpus = "=1.11.1"
url = "=2.1.0"
url2 = "=0.0.4"
crossbeam-channel = "=0.3.8"
snowflake = "=1.3.0"
parking_lot = "=0.8.0"
serde = "=1.0.89"
serde_derive = "=1.0.89"
serde_json = "=1.0.39"
tokio = { version = "=0.2.11", features = ["full"] }
#tokio-tungstenite = { git = "https://github.com/snapview/tokio-tungstenite.git" }
rand = "=0.7.2"
base64 = "=0.10.1"
chrono = "=0.4.6"
native-tls = "=0.2.3"
openssl = "=0.10.25"
tungstenite = "=0.9.2"
threadpool = "=1.7.1"
newrelic="0.2"
[dev-dependencies]
sim2h_client = { version = "=0.0.42-alpha5", path = "../sim2h_client" }
chashmap = "=2.2.2"