Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🔥 remove explorer #171

Merged
merged 2 commits into from
Jun 26, 2024
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
22 changes: 0 additions & 22 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,33 +10,11 @@ jobs:
checks:
runs-on: ubuntu-20.04
needs:
- explorer
- cli
- client
- test
steps:
- run: echo "Done"

explorer:
runs-on: ubuntu-20.04
defaults:
run:
working-directory: crates/explorer
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-rust/
id: rust-setup
- uses: Swatinem/rust-cache@v2
name: Cache Rust and it's packages
- name: Cargo build
run: cargo build
- name: Cargo fmt
run: cargo fmt -- --check
- name: Cargo clippy
run: cargo clippy -- -D warnings
- name: Cargo test
run: cargo test

cli:
runs-on: ubuntu-20.04
defaults:
Expand Down
1 change: 0 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
// autodiscovery is disabled, must list all crates
"crates/cli/Cargo.toml",
"crates/client/Cargo.toml",
"crates/explorer/Cargo.toml",
"crates/test/Cargo.toml",
],
"rust-analyzer.diagnostics.disabled": [
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
incremented upon a breaking change and the patch version will be incremented for features.

## [dev] - Unreleased
- del/remove Trident explorer ([#171](https://github.com/Ackee-Blockchain/trident/pull/171))
- fix/snapshot's zeroed account as optional ([#170](https://github.com/Ackee-Blockchain/trident/pull/170))
- feat/fuzzer-stats-logging, an optional statistics output for fuzzing session ([#144](https://github.com/Ackee-Blockchain/trident/pull/144))

Expand Down
72 changes: 0 additions & 72 deletions Cargo.lock

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

14 changes: 1 addition & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,25 +1,19 @@
[workspace]
members = ["crates/cli", "crates/client", "crates/explorer", "crates/test"]
members = ["crates/cli", "crates/client", "crates/test"]
exclude = ["examples/"]
resolver = "1"


[workspace.dependencies]
trident-test = { path = "./crates/test", version = "0.3.2" }
trident-client = { path = "./crates/client", version = "0.6.0" }
trident-explorer = { path = "./crates/explorer", version = "0.3.2" }
anchor-client = { version=">=0.29.0", features = ["async"]}
solana-sdk = "1.16"
solana-cli-output = "1.16"
solana-transaction-status = "1.16"
solana-account-decoder = "1.16"
solana-cli-config = "1.16"
solana-client = "1.16"
solana-program = "1.16"
solana-logger = "1.16"
solana-vote-program = "1.16"
spl-token = "4.0.0"
spl-memo = "4.0.0"
spl-associated-token-account = "2.0.0"
tokio = { version = "1", default-features = false }
rand = "0.8.5"
Expand All @@ -43,12 +37,6 @@ rstest = "0.18.1"
lazy_static = "1.4.0"
bs58 = "0.5.0"
base64 = "0.13.0"
pretty-hex = "0.3.0"
console = "0.15.0"
chrono = "0.4.19"
phf = { version = "0.11.2", features = ["macros"] }
num-derive = "0.4.0"
num-traits = "0.2.14"
proc-macro2 = { version = "1.0.66", default-features = false }
darling = "0.13.1"
clap = { version = "=4.3.19", features = ["derive"] }
Expand Down
1 change: 0 additions & 1 deletion crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,3 @@ anyhow = { workspace = true }
fehler = { workspace = true }
solana-sdk = { workspace = true }
trident-client = { workspace = true }
trident-explorer = { workspace = true }
3 changes: 0 additions & 3 deletions crates/cli/src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@ pub use test::test;
mod localnet;
pub use localnet::localnet;

mod explorer;
pub use explorer::{explorer, ExplorerCommand};

mod init;
pub use init::{init, TestsType};

Expand Down
Loading
Loading