Skip to content

Commit

Permalink
✨ Update cargo tomls
Browse files Browse the repository at this point in the history
  • Loading branch information
lukacan committed Jan 15, 2025
1 parent f4e7bec commit 4789d15
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 4 deletions.
1 change: 0 additions & 1 deletion Cargo.lock

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

File renamed without changes.
2 changes: 1 addition & 1 deletion crates/client/src/test_generator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ impl TestGenerator {

let cargo_toml_content = load_template!("/src/template/Cargo_fuzz.toml.tmpl");

let trident_toml_content = load_template!("/../config/template/Trident.toml.tmpl");
let trident_toml_content = load_template!("/src/template/Trident.toml.tmpl");

create_file(&self.root, &fuzz_test_path, &self.test_fuzz).await?;
create_file(&self.root, &fuzz_instructions_path, &self.fuzz_instructions).await?;
Expand Down
4 changes: 4 additions & 0 deletions crates/config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
name = "trident-config"
version = "0.0.1"
edition = "2021"
repository = "https://github.com/Ackee-Blockchain/trident"
license-file = "../../LICENSE"
readme = "../../README.md"
description = "The trident config crate is dedicated to manage Trident.toml."

[dependencies]

Expand Down
1 change: 0 additions & 1 deletion crates/fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ anyhow = "1"
fehler = "1"
toml = { version = "0.8", features = ["preserve_order"] }
rand = "0.8"
log = "*"
bincode = "1.3"
byteorder = "1.5.0"
base64 = "0.22.1"
5 changes: 4 additions & 1 deletion crates/template/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
name = "trident-template"
version = "0.0.1"
edition = "2021"

repository = "https://github.com/Ackee-Blockchain/trident"
license-file = "../../LICENSE"
readme = "../../README.md"
description = "The trident template crate is dedicated to generated Trident fuzz test templates."
[dependencies]

# Trident IDL spec
Expand Down

0 comments on commit 4789d15

Please sign in to comment.