Skip to content

Commit

Permalink
build: add missing fields
Browse files Browse the repository at this point in the history
  • Loading branch information
crisog committed Jun 27, 2024
1 parent cf22ec5 commit 71f494e
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 18 deletions.
2 changes: 1 addition & 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.
File renamed without changes.
15 changes: 15 additions & 0 deletions ghost-crab-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[lib]
proc-macro = true

[package]
name = "ghost-crab-macros"
description = "macros for ghost-crab"
version = "0.1.0"
edition = "2021"

[dependencies]
proc-macro2 = "1.0.85"
quote = "1.0.36"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
syn = { version = "2.0.66", features = ["full"] }
File renamed without changes.
8 changes: 5 additions & 3 deletions ghost-crab/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
[package]
name = "ghost_crab"
name = "ghost-crab"
description = "ethereum indexer SDK 👻🦀"
version = "0.1.0"
edition = "2021"
license = "MIT"

[lib]
name = "ghost_crab"
name = "ghost-crab"
path = "src/lib.rs"

[dependencies]
Expand All @@ -22,7 +24,7 @@ hyper = { version = "1.3.1", features = ["full"] }
hyper-tls = "0.6.0"
hyper-util = { version = "0.1.5", features = ["full"] }
blake3 = "1.5.1"
indexer-macros = { path = "../indexer-macros", version = "0.1.0" }
ghost-crab-macros = { path = "../ghost-crab-macros", version = "0.1.0" }
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
once_cell = "1.19.0"
Expand Down
14 changes: 0 additions & 14 deletions indexer-macros/Cargo.toml

This file was deleted.

0 comments on commit 71f494e

Please sign in to comment.