Skip to content
This repository was archived by the owner on May 5, 2025. It is now read-only.

Commit 09d6ba2

Browse files
committed
fix build
1 parent fced752 commit 09d6ba2

File tree

4 files changed

+15
-14
lines changed

4 files changed

+15
-14
lines changed

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Dockerfile.server

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ COPY Cargo.lock .
1212

1313
RUN mkdir -p /hyle/contracts/hyllar && wget https://raw.githubusercontent.com/Hyle-org/hyle/refs/heads/main/contracts/hyllar/hyllar.img -O /hyle/contracts/hyllar/hyllar.img
1414
RUN mkdir -p /hyle/contracts/hydentity && wget https://raw.githubusercontent.com/Hyle-org/hyle/refs/heads/main/contracts/hydentity/hydentity.img -O /hyle/contracts/hydentity/hydentity.img
15+
RUN mkdir -p /hyle/contracts/amm && wget https://raw.githubusercontent.com/Hyle-org/hyle/refs/heads/main/contracts/amm/amm.img -O /hyle/contracts/amm/amm.img
1516

1617
RUN cargo build -p server
1718

crates/server/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
7-
sdk = { git = "https://github.com/Hyle-org/hyle.git", package="hyle-contract-sdk" , branch = "fix_amm" }
8-
hyllar = { git = "https://github.com/Hyle-org/hyle.git", package="hyllar", branch = "fix_amm" }
9-
hydentity = { git = "https://github.com/Hyle-org/hyle.git", package="hydentity", branch = "fix_amm" }
10-
amm = { git = "https://github.com/Hyle-org/hyle.git", package="amm", branch = "fix_amm" }
11-
hyle = { git = "https://github.com/Hyle-org/hyle.git", package="hyle", branch = "fix_amm" }
12-
bonsai_runner = { git = "https://github.com/Hyle-org/hyle.git", package="bonsai-runner", branch = "bonsai_runner" }
7+
sdk = { git = "https://github.com/Hyle-org/hyle.git", package="hyle-contract-sdk" , branch = "main" }
8+
hyllar = { git = "https://github.com/Hyle-org/hyle.git", package="hyllar", branch = "main" }
9+
hydentity = { git = "https://github.com/Hyle-org/hyle.git", package="hydentity", branch = "main" }
10+
amm = { git = "https://github.com/Hyle-org/hyle.git", package="amm", branch = "main" }
11+
hyle = { git = "https://github.com/Hyle-org/hyle.git", package="hyle", branch = "main" }
12+
bonsai_runner = { git = "https://github.com/Hyle-org/hyle.git", package="bonsai-runner", branch = "main" }
1313

1414
# sdk = { path = "../../../hyle3/contract-sdk", package="hyle-contract-sdk"}
1515
# hyllar = { path = "../../../hyle3/contracts/hyllar/contract", package="hyllar" }

crates/ui/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
7-
sdk = { git = "https://github.com/Hyle-org/hyle.git", package="hyle-contract-sdk", branch = "fix_amm" }
8-
hyllar= { git = "https://github.com/Hyle-org/hyle.git", package="hyllar", branch = "fix_amm" }
7+
sdk = { git = "https://github.com/Hyle-org/hyle.git", package="hyle-contract-sdk", branch = "main" }
8+
hyllar= { git = "https://github.com/Hyle-org/hyle.git", package="hyllar", branch = "main" }
99

1010
serde = { version = "1.0", default-features = false, features = [
1111
"derive",

0 commit comments

Comments
 (0)