Skip to content

Commit

Permalink
Merge pull request #209 from holochain/rust-client
Browse files Browse the repository at this point in the history
add a rust trycp client crate
  • Loading branch information
ThetaSinner authored Jun 3, 2024
2 parents 3f272bd + dfc78df commit 4d69771
Show file tree
Hide file tree
Showing 10 changed files with 465 additions and 111 deletions.
89 changes: 63 additions & 26 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,32 @@
[workspace]
members = [
"crates/trycp_api",
"crates/trycp_client",
"crates/trycp_server",
"ts/test/fixture/zomes/coordinator",
"ts/test/fixture/zomes/integrity",
]
resolver = "2"

[workspace.dependencies]
futures = "0.3"
hdi = "0.5.0-dev.1"
hdk = "0.4.0-dev.1"
nix = { version = "0.28", features = ["signal"] }
once_cell = "1.5.0"
parking_lot = "0.12"
reqwest = { version = "0.12", default-features = false }
rmp-serde = "1.1"
serde = "1.0.192"
serde_bytes = "0.11"
serde_json = "1.0.117"
slab = "0.4"
snafu = "0.6"
structopt = "0.2"
tokio = "1.38"
tokio-tungstenite = "0.21"
trycp_api = { version = "0.17.0-dev.0", path = "crates/trycp_api" }
url = "2"

[profile.dev]
opt-level = "z"
10 changes: 10 additions & 0 deletions crates/trycp_api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[package]
name = "trycp_api"
version = "0.17.0-dev.0"
license = "CAL-1.0"
edition = "2021"

[dependencies]
serde = { workspace = true, features = ["derive"] }
serde_bytes = { workspace = true }
serde_json = { workspace = true }
Loading

0 comments on commit 4d69771

Please sign in to comment.