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
4 changes: 2 additions & 2 deletions .github/workflows/containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
pull-requests: write
runs-on: ubuntu-latest
outputs:
indexer-service-rs: ${{ steps.release-please.outputs.service--tag_name }}
indexer-tap-agent: ${{ steps.release-please.outputs.tap-agent--tag_name }}
indexer-service-rs: ${{ steps.release-please.outputs.['crates/service--tag_name'] }}
indexer-tap-agent: ${{ steps.release-please.outputs.['crates/tap-agent--tag_name'] }}
steps:
- name: Release please
id: release-please
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/license_headers_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ jobs:
-ignore '.github/*.yml' \
-ignore '.github/workflows/*.yaml' \
-ignore '.github/*.yaml' \
-ignore 'migrations/*.sql' \
-ignore 'crates/migrations/*.sql' \
.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Install sqlx
run: cargo install sqlx-cli --no-default-features --features postgres
- name: Run the test sqlx migrations
run: cargo sqlx migrate run
run: cargo sqlx migrate run --source crates/migrations
- name: Check that the sqlx prepared query metadata is up-to-date
run: cargo sqlx prepare --workspace --check -- --all-targets --all-features

Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
- name: Install sqlx
run: cargo install sqlx-cli --no-default-features --features postgres
- name: Run the test sqlx migrations
run: cargo sqlx migrate run
run: cargo sqlx migrate run --source crates/migrations
- name: Run tests and generate coverage report
run: cargo llvm-cov test --all-features --workspace --lcov --output-path lcov.info
- name: Upload coverage to Coveralls
Expand Down Expand Up @@ -172,6 +172,6 @@ jobs:
- name: Install sqlx
run: cargo install sqlx-cli --no-default-features --features postgres
- name: Run the test sqlx migrations
run: cargo sqlx migrate run
run: cargo sqlx migrate run --source crates/migrations
- name: Test documentation code snippets
run: cargo test --doc --all-features --workspace
8 changes: 4 additions & 4 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"tap-agent": "1.7.2",
"common": "1.4.0",
"config": "1.2.1",
"service": "1.3.2"
"crates/tap-agent": "1.7.2",
"crates/common": "1.4.0",
"crates/config": "1.2.1",
"crates/service": "1.3.2"
}
54 changes: 30 additions & 24 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,26 @@
[workspace]
members = ["common", "config", "dips", "service", "tap-agent"]
members = [
"crates/common",
"crates/config",
"crates/dips",
"crates/service",
"crates/tap-agent",
]
resolver = "2"

[profile.dev.package."*"]
opt-level = 3

[workspace.dependencies]
alloy = { version = "=0.5.4", features = [
"kzg",
"signer-mnemonic",
"dyn-abi",
"sol-types",
"signer-local",
"eip712",
"rlp",
"signers",
"kzg",
"signer-mnemonic",
"dyn-abi",
"sol-types",
"signer-local",
"eip712",
"rlp",
"signers",
], default-features = false }
clap = "4.4.3"
lazy_static = "1.4.0"
Expand All @@ -27,21 +33,21 @@ async-trait = "0.1.72"
eventuals = "0.6.7"
base64 = "0.22.1"
reqwest = { version = "0.12", features = [
"charset",
"h2",
"charset",
"h2",
], default-features = false }
serde = { version = "1.0.206", default-features = false }
serde_json = "1.0.124"
sqlx = { version = "0.8.2", features = [
"bigdecimal",
"chrono",
"json",
"macros",
"migrate",
"postgres",
"runtime-tokio",
"rust_decimal",
"uuid",
"bigdecimal",
"chrono",
"json",
"macros",
"migrate",
"postgres",
"runtime-tokio",
"rust_decimal",
"uuid",
], default-features = false }
uuid = { version = "1.11.0", features = ["v7"] }
tracing = { version = "0.1.40", default-features = false }
Expand All @@ -50,12 +56,12 @@ build-info = "0.0.39"
tap_core = { git = "https://github.com/semiotic-ai/timeline-aggregation-protocol", rev = "61b47b3", default-features = false }
tap_aggregator = { git = "https://github.com/semiotic-ai/timeline-aggregation-protocol", rev = "61b47b3", default-features = false }
tracing-subscriber = { version = "0.3", features = [
"json",
"env-filter",
"ansi",
"json",
"env-filter",
"ansi",
], default-features = false }
thegraph-core = { git = "https://github.com/edgeandnode/toolshed", rev = "1663534fc1738e2db1b11cb54b5bb478ee970d40", features = [
"subgraph-client",
"subgraph-client",
] }
thegraph-graphql-http = "0.2.0"
graphql_client = { version = "0.14.0", features = ["reqwest-rustls"] }
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"release-type": "rust",
"plugins": ["cargo-workspace"],
"packages": {
"common": {},
"config": {},
"service": {},
"tap-agent": {}
"crates/common": {},
"crates/config": {},
"crates/service": {},
"crates/tap-agent": {}
}
}
Loading