Skip to content

Commit a8fa51e

Browse files
authored
fix(all): add missing feature flags (#303)
Signed-off-by: Gustavo Inacio <[email protected]>
1 parent 1846e6d commit a8fa51e

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ lazy_static = "1.4.0"
1515
axum = { version = "0.7.5", default-features = false }
1616
tokio = "1.39.2"
1717
prometheus = "0.13.3"
18-
anyhow = { version = "1.0.72", default-features = false }
18+
anyhow = { version = "1.0.72" }
1919
thiserror = "1.0.49"
2020
async-trait = "0.1.72"
2121
eventuals = "0.6.7"

config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ alloy.workspace = true
88
serde.workspace = true
99
thegraph-core.workspace = true
1010
tracing.workspace = true
11-
bigdecimal = { workspace = true }
11+
bigdecimal = { workspace = true, features = ["serde"] }
1212
bip39 = "2.0.0"
1313
figment = { version = "0.10.19", features = ["env", "toml"] }
1414
serde_with = { version = "3.8.1", default-features = false }

service/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ license = "Apache-2.0"
99
[dependencies]
1010
indexer-common = { path = "../common" }
1111
indexer-config = { path = "../config" }
12-
anyhow.workspace = true
12+
anyhow = { workspace = true }
1313
reqwest = { workspace = true }
14-
tokio = { workspace = true }
14+
tokio = { workspace = true, features = ["rt-multi-thread"] }
1515
tracing.workspace = true
1616
thiserror.workspace = true
1717
serde = { workspace = true }
@@ -20,8 +20,8 @@ axum.workspace = true
2020
sqlx.workspace = true
2121
thegraph-core.workspace = true
2222
thegraph-graphql-http.workspace = true
23-
tracing-subscriber.workspace = true
24-
clap.workspace = true
23+
tracing-subscriber = { workspace = true, features = ["fmt"] }
24+
clap = { workspace = true, features = ["derive"] }
2525
build-info.workspace = true
2626
lazy_static.workspace = true
2727
async-graphql = { version = "7.0.3", default-features = false }

tap-agent/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,20 +24,20 @@ tracing.workspace = true
2424
prometheus.workspace = true
2525
axum.workspace = true
2626
tap_core.workspace = true
27-
tokio.workspace = true
27+
tokio = { workspace = true, features = ["rt-multi-thread"] }
2828
lazy_static.workspace = true
2929
thegraph-core.workspace = true
3030
clap.workspace = true
3131
tracing-subscriber.workspace = true
3232
bigdecimal = { workspace = true, features = ["serde"] }
3333
ruint = { version = "1.12.3", features = [
34-
"num-traits",
34+
"num-traits",
3535
], default-features = false }
3636
futures-util = { version = "0.3.28", default-features = false }
3737
jsonrpsee = { version = "0.24.0", features = ["http-client", "tracing"] }
3838
tap_aggregator = { git = "https://github.com/semiotic-ai/timeline-aggregation-protocol", rev = "eb8447e" }
3939
ractor = { version = "0.9", features = [
40-
"async-trait",
40+
"async-trait",
4141
], default-features = false }
4242

4343
[dev-dependencies]

0 commit comments

Comments
 (0)