Skip to content
Merged
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
17 changes: 0 additions & 17 deletions .github/actions/setup_env/action.yml

This file was deleted.

6 changes: 0 additions & 6 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Build .env file
uses: ./.github/actions/setup_env

- name: Install Rust toolchain
run: |
rustup toolchain install 1.79 --profile minimal --target wasm32-unknown-unknown
Expand Down Expand Up @@ -60,9 +57,6 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Build .env file
uses: ./.github/actions/setup_env

- name: Install Rust toolchain
run: |
rustup toolchain install 1.79 --profile minimal --target wasm32-unknown-unknown
Expand Down
5 changes: 0 additions & 5 deletions .github/workflows/release_cli.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,6 @@ jobs:
uses: actions/checkout@v4
with:
path: txtx

- name: Build .env file
uses: ./txtx/.github/actions/setup_env
with:
working_directory: "txtx"

- name: Checkout Supervisor UI
uses: actions/checkout@v4
Expand Down
5 changes: 0 additions & 5 deletions .github/workflows/release_crates.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,6 @@ jobs:
with:
path: txtx

- name: Build .env file
uses: ./txtx/.github/actions/setup_env
with:
working_directory: "txtx"

- name: Checkout Supervisor UI
uses: actions/checkout@v4
with:
Expand Down
157 changes: 0 additions & 157 deletions Cargo.lock

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

6 changes: 1 addition & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,8 @@ members = [
"crates/txtx-cli",
"crates/txtx-core",
"crates/txtx-addon-kit",
"crates/txtx-cloud",
"crates/txtx-lsp",
"crates/txtx-supervisor-ui",
"crates/txtx-serve",
"addons/evm",
"addons/svm/core",
]
Expand All @@ -29,10 +27,8 @@ reqwest = { version = "0.11.27", default-features = false, features = [
]}
txtx-core = { path = "crates/txtx-core", default-features = false }
txtx-addon-kit = { path = "crates/txtx-addon-kit", default-features = false }
txtx-cloud = { path = "crates/txtx-cloud" }
txtx-gql = { path = "crates/txtx-gql" }
txtx-supervisor-ui = { path = "crates/txtx-supervisor-ui" }
txtx-serve = { path = "crates/txtx-serve" }
txtx-addon-network-evm = { path = "addons/evm" }
txtx-addon-network-svm = { path = "addons/svm/core" }
txtx-addon-network-svm = { path = "addons/svm/core" }
uuid = { version = "1.15.1", features = ["v4", "serde", "js"] }
1 change: 0 additions & 1 deletion addons/svm/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ txtx-addon-network-svm-types = { path = "../types" }
lazy_static = "1.4.0"
serde_json = "1.0.113"
serde = "1"
serde_derive = "1"
bincode = "1.3.3"
log = "0.4.27"
solana-message = { version = "3.0.0", features = ["serde"] }
Expand Down
Loading
Loading