Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,771 changes: 965 additions & 806 deletions Cargo.lock

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@ iroh = { version = "0.96.0", features = ["metrics"] }
iroh-relay = { version = "0.96.0", features = ["metrics"] }
iroh-blobs = { version = "0.98", features = ["metrics"] }
iroh-gossip = { version = "0.96.0" }
axum = "0.7"
tower = "0.5"
tower-http = { version = "0.6", features = ["trace"] }
flume = "0.11.1"
memmap2 = { version = "0.9.3", features = ["stable_deref_trait"] }
indicatif = "0.17.5"
Expand Down Expand Up @@ -106,6 +109,10 @@ ts-rs = { git = "https://github.com/arilotter/ts-rs.git", rev = "92ce1752227fec9
] }
rayon = "1.10.0"

# with iroh update need to specify digest and crypto-common versions
digest = { version = "=0.11.0-rc.10", default-features = false }
crypto-common = "0.2"

# dev only
test-log = { version = "0.2.16", features = ["trace"] }
pretty_assertions = "1.4.1"
Expand Down
12 changes: 12 additions & 0 deletions architectures/inference-only/inference-node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ path = "src/main.rs"
name = "test-network"
path = "src/bin/test-network.rs"

[[bin]]
name = "gateway-node"
path = "src/bin/gateway-node.rs"

[dependencies]
psyche-inference.workspace = true
psyche-network.workspace = true
Expand All @@ -33,3 +37,11 @@ iroh-blobs.workspace = true
iroh-gossip.workspace = true

serde_json.workspace = true
serde.workspace = true
uuid = { version = "1", features = ["v4"] }
pyo3.workspace = true
postcard.workspace = true

axum = { version = "0.7", features = ["macros"] }
tower = { version = "0.4" }
tower-http = { version = "0.5", features = ["cors"] }
Loading
Loading