-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
32 lines (29 loc) · 864 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
29
30
31
32
[workspace]
members = [
"engine",
"eth-connector",
"utils"
]
exclude = [
"res/mock_engine",
"res/mock_eth_connector"
]
resolver = "2"
[workspace.package]
authors = ["Aurora Labs <[email protected]>"]
edition = "2021"
homepage = "https://github.com/aurora-is-near/aurora-engine"
repository = "https://github.com/aurora-is-near/aurora-engine"
license = "CC0-1.0"
readme = "README.md"
version = "0.4.1"
[workspace.dependencies]
anyhow = "1"
aurora-engine-types = { git = "https://github.com/aurora-is-near/aurora-engine.git", tag = "3.5.0", default-features = false, features = ["impl-serde"] }
near-contract-standards = "4.1"
near-sdk = "4.1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
near-workspaces = "0.9"
[patch.crates-io]
parity-secp256k1 = { git = 'https://github.com/paritytech/rust-secp256k1', rev = "d05fd8e" }