-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (53 loc) · 2.06 KB
/
Copy pathCargo.toml
File metadata and controls
61 lines (53 loc) · 2.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "datafusion-ethers"
version = "54.0.0"
edition = "2024"
repository = "https://github.com/kamu-data/datafusion-ethers"
description = "Ethereum RPC bridge for Apache Datafusion"
keywords = ["datafusion", "sql", "ethereum", "blockchain"]
authors = ["Kamu Data Inc. <info@kamu.dev>"]
license = "Apache-2.0"
[features]
eip712 = ["alloy-core/eip712"]
[dependencies]
async-stream = { version = "0.3" }
async-trait = { version = "0.1" }
# NOTE: We use alloy sub-crates instead of the meta-crate to avoid pulling in optional dependencies
# that get included anyway due to an old known issue:
# Details: https://github.com/rust-lang/cargo/issues/10801
alloy-core = { version = "1", default-features = false, features = [
"dyn-abi",
"json-abi",
] }
alloy-network = { version = "1", default-features = false }
alloy-provider = { version = "1", default-features = false }
alloy-rpc-types-eth = { version = "1", default-features = false }
alloy-transport = { version = "1", default-features = false }
datafusion = { version = "54", default-features = false, features = ["sql"] }
futures = { version = "0.3" }
serde_json = { version = "1" }
tokio = { version = "1", default-features = false }
thiserror = { version = "2" }
tracing = { version = "0.1", default-features = false }
[dev-dependencies]
alloy-contract = { version = "1", default-features = false }
alloy-node-bindings = { version = "1", default-features = false }
alloy-provider = { version = "1", default-features = false, features = [
"reqwest",
"reqwest-rustls-tls",
"ws",
] }
datafusion = { version = "54", default-features = false, features = [
"parquet",
] }
datafusion-functions-json = { version = "0.54", default-features = false }
indoc = { version = "2" }
pretty_assertions = { version = "1" }
test-log = { version = "0.2", features = ["trace"] }
tokio = { version = "1", default-features = false, features = [
"macros",
"rt-multi-thread",
] }
tracing-subscriber = { version = "0.3" }
[patch.crates-io]
# datafusion = { git = 'https://github.com/apache/datafusion.git', rev = "7bd7747" }