Skip to content

Commit

Permalink
Merge pull request #9 from holaplex/abdul/airdrop
Browse files Browse the repository at this point in the history
Airdrop
  • Loading branch information
imabdulbasit authored Oct 5, 2023
2 parents 3e16094 + 7694e9c commit 6145825
Show file tree
Hide file tree
Showing 18 changed files with 1,035 additions and 272 deletions.
2 changes: 1 addition & 1 deletion .rustfmt.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ imports_granularity = "Crate"
group_imports = "StdExternalCrate"
reorder_imports = true
reorder_modules = true
reorder_impl_items = true
reorder_impl_items = false
type_punctuation_density = "Wide"
space_before_colon = false
space_after_colon = true
Expand Down
63 changes: 62 additions & 1 deletion Cargo.lock

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

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ path = "src/main.rs"

[dependencies]
anyhow = "1.0.75"
backon = "0.4.1"
bs58 = "0.5.0"
clap = { version = "4.4.4", features = ["cargo", "derive", "env", "wrap_help"] }
crossbeam = "0.8.2"
dashmap = "5.5.3"
Expand Down
6 changes: 5 additions & 1 deletion build.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
fn main() {
prost_build::compile_protos(
&["src/proto/asset-upload.proto", "src/proto/drop-mint.proto"],
&[
"src/proto/asset-upload.proto",
"src/proto/drop-mint.proto",
"src/proto/mint-random-queued.proto",
],
&["src/proto"],
)
.unwrap();
Expand Down
Loading

0 comments on commit 6145825

Please sign in to comment.