-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (30 loc) · 1.31 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
[package]
name = "anychain-sui"
description = "A Rust library for Sui-focused cryptocurrency wallets, enabling seamless transactions on the Sui blockchain"
version = "0.1.6"
keywords = ["sui", "blockchain", "cryptocurrency", "wallet", "transactions"]
edition = "2021"
homepage = "https://www.cregis.com"
license = "MIT/Apache-2.0"
repository = "https://github.com/0xcregis/anychain-sui"
[dependencies]
anychain-core = { version = "0.1.6" }
schemars = { version = "0.8.10", features = ["either"] }
serde = { version = "1.0", default-features = false, features = ["alloc", "derive"] }
serde_with = { version = "2.1.0", features = ["hex"] }
derive_more = "0.99.17"
bcs = "0.1.6"
hex = "0.4.2"
fastcrypto = { git = "https://github.com/MystenLabs/fastcrypto", features = ["copy_key"], rev = "c101a5176799db3eb9c801b844e7add92153d291" }
sui_types = { git = "https://github.com/mystenlabs/sui", package = "sui-types", rev = "f1a2d61bebdf83f01b58830e4768631bd28ce48a"}
shared_crypto = { git = "https://github.com/mystenlabs/sui", package = "shared-crypto", rev = "f1a2d61bebdf83f01b58830e4768631bd28ce48a"}
base64 = "0.22.1"
serde_json = "1.0.133"
bs58 = "0.5.1"
bech32 = "0.9.0"
rand = "0.8.5"
group = "0.13.0"
ed25519-dalek = "1.0.1"
curve25519-dalek = { version = "4.1.3", features = ["group"] }
[dev-dependencies]
rand = { version = "0.8.5" }