-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
21 lines (17 loc) · 863 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[package]
name = "sui-client-hyper"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.70"
hyper = { version="0.14.26", features=["full"] }
tokio = { version="1.27.0", features=["full"] }
async-trait = "0.1.68"
hyper-tls = "0.5.0"
hex = "0.4.3"
serde_json = "1.0.96"
sui-json-rpc-types = { git = "https://github.com/MystenLabs/sui", rev="d6ebeaa32137d4768f97dde14ab04f51d86226b7"}
sui-types = { git = "https://github.com/MystenLabs/sui", rev="d6ebeaa32137d4768f97dde14ab04f51d86226b7"}
sui-transaction-builder = { git = "https://github.com/MystenLabs/sui", rev="d6ebeaa32137d4768f97dde14ab04f51d86226b7"}
move-core-types = { git = "https://github.com/move-language/move", rev = "60cec12b1ed9382836aa4c141e445656d39375e1", features = ["address32"] }