-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
63 lines (54 loc) · 1.59 KB
/
Cargo.toml
File metadata and controls
63 lines (54 loc) · 1.59 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
61
62
63
[package]
name = "hc-ops"
version = "0.3.0"
edition = "2024"
[[bin]]
name = "hc-ops"
path = "src/hc-ops/main.rs"
[dependencies]
clap = "4.5"
holochain_client = { version = "0.8.1-rc.2", default-features = false }
holochain_conductor_api = "0.6.1-rc.2"
holochain_types = "0.6.1-rc.2"
holochain_zome_types = "0.6.1-rc.0"
holochain_sqlite = "0.6.1-rc.1"
holochain_serialized_bytes = "=0.0.56"
holo_hash = { version = "0.6.1-rc.0", features = ["kitsune2"] }
kitsune2_api = "0.4.0-dev.2"
kitsune2_core = "0.4.0-dev.2"
kitsune2_dht = "0.4.0-dev.2"
thiserror = "2"
anyhow = "1"
dialoguer = "0.11"
tokio = { version = "1", features = ["rt-multi-thread"] }
diesel = { version = "2.2", features = ["sqlite"] }
diesel_migrations = "2.2"
libsqlite3-sys = { version = "0.35.0", features = [
"bundled-sqlcipher-vendored-openssl",
] }
serde_json = { version = "1", git = "https://github.com/ThetaSinner/json.git", branch = "master" }
xdg = "3.0"
futures = "0.3"
tabled = "0.20"
base64 = "0.22"
human_bytes = "0.4.3"
nom = "8.0"
sodoken = "0.1.0"
libsodium-sys-stable = "1.22.2"
libc = "0.2.170"
rpassword = "7.3"
proc-ctl = { version = "0.4.1", optional = true }
holochain_websocket = { version = "0.6.1-rc.2", optional = true }
serde = { version = "1.0.203", features = ["derive"] }
[dev-dependencies]
tokio = { version = "1", features = ["macros"] }
rand = "0.9"
holochain = { version = "0.6.1-rc.2", default-features = false, features = [
"sweettest",
"wasmer_sys",
"transport-iroh",
] }
fixture_types = { path = "fixture/fixture_types" }
[features]
default = ["discover"]
discover = ["dep:proc-ctl", "dep:holochain_websocket"]