forked from eigerco/beerus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
28 lines (23 loc) · 897 Bytes
/
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
[workspace]
members = ["crates/beerus-core", "crates/beerus-rpc"]
default-members = ["crates/beerus-rpc"]
exclude = ["crates/beerus-js"]
[package]
name = "beerus"
version = "0.2.0"
edition = "2021"
repository = "https://github.com/keep-starknet-strange/beerus"
[workspace.package]
version = "0.2.0"
edition = "2021"
[workspace.dependencies]
beerus-core = { path = "./crates/beerus-core" }
# Helios revision is supposed to be changed by the corresponding tag once the revision is released. Next expected tag: 0.5.0.
helios = { git = "https://github.com/a16z/helios", rev = "f63e4142c8c8094cdf94cf8d1ef1cb637a7eac98" }
#TODO: update with version tag instead of hash rev when available
starknet = { git = "https://github.com/xJonathanLEI/starknet-rs", rev = "e72cc0a4b3ea67c7691ebec58300da3c21f0abb2" }
ethers = "2.0.2"
eyre = "0.6.8"
log = "0.4.17"
serde = "1.0.156"
primitive-types = "0.12.1"