-
Notifications
You must be signed in to change notification settings - Fork 107
/
Cargo.toml
68 lines (62 loc) · 1.84 KB
/
Cargo.toml
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
62
63
64
65
66
67
68
[workspace]
members = ["crates/cli", "crates/freeze", "crates/to_df", "crates/python"]
# Explicitly set the resolver to version 2, which is the default for packages with edition >= 2021 but not virtual workspaces.
# https://doc.rust-lang.org/edition-guide/rust-2021/default-cargo-resolver.html
resolver = "2"
[workspace.package]
version = "0.3.2"
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/paradigmxyz/cryo"
repository = "https://github.com/paradigmxyz/cryo"
exclude = [".github/"]
[workspace.dependencies]
cryo_cli = { version = "0.3.2", path = "./crates/cli" }
cryo_freeze = { version = "0.3.2", path = "./crates/freeze" }
cryo_to_df = { version = "0.3.2", path = "./crates/to_df" }
anstyle = "1.0.4"
async-trait = "0.1.74"
chrono = { version = "0.4.31", features = ["serde"] }
clap_cryo = { version = "4.3.21-cryo", features = [
"derive",
"color",
"unstable-styles",
] }
colored = "2.0.4"
color-print = "0.3.5"
ethers = { version = "2.0.10", features = ["rustls", "ws", "ipc"] }
ethers-core = "2.0.10"
eyre = "0.6.8"
futures = "0.3.29"
governor = "0.6.0"
hex = "0.4.3"
heck = "0.4.1"
indexmap = "2.1.0"
indicatif = "0.17.7"
lazy_static = "1.4.0"
mesc = "0.1.4"
polars = { version = "0.36.2", features = [
"parquet",
"string_encoding",
"polars-lazy",
"lazy",
"binary_encoding",
"json",
"dtype-struct",
] }
prefix-hex = "0.7.1"
pyo3 = { version = "0.20.0", features = ["extension-module"] }
pyo3-build-config = "0.20.0"
pyo3-asyncio = { version = "0.20.0", features = ["tokio-runtime"] }
pyo3-polars = "0.10.0"
rand = "0.8.5"
regex = "1.10.2"
serde = { version = "1.0.191", features = ["derive"] }
serde_json = "1.0.108"
thiserror = "1.0.50"
thousands = "0.2.0"
tokio = { version = "1.33.0", features = ["macros", "rt-multi-thread", "sync"] }
[profile.dev]
incremental = true
debug = 1
codegen-units = 32