-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
55 lines (49 loc) · 1.47 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
[workspace.package]
authors = ["Aurora Labs <[email protected]>", "Evgeny Ukhanov <[email protected]>"]
edition = "2021"
version = "0.6.3"
homepage = "https://github.com/aurora-is-near/aurora-eth-connector"
repository = "https://github.com/aurora-is-near/aurora-eth-connector"
license = "CC0 1.0"
[workspace.dependencies]
aurora-engine-types = { git = "https://github.com/aurora-is-near/aurora-engine.git", tag = "3.5.0", default-features = false }
near-sdk = "4.1"
near-plugins = { git = "https://github.com/aurora-is-near/near-plugins", tag = "v0.1.0" }
near-primitives = "0.17"
near-contract-standards = "4.1"
byte-slice-cast = "1"
[patch.crates-io]
parity-secp256k1 = { git = 'https://github.com/paritytech/rust-secp256k1', rev = "d05fd8e" }
near-sdk = { git = "https://github.com/aurora-is-near/near-sdk-rs.git", tag = "v4.1.1-fix-deps" }
[profile.release]
opt-level = 3
debug = false
debug-assertions = false
overflow-checks = true
lto = true
panic = "abort"
incremental = false
codegen-units = 1
rpath = false
[profile.dev]
# Due to a strange bug, setting this to 3 will cause test failures
opt-level = "z"
debug = false
debug-assertions = true
overflow-checks = true
lto = true
panic = "abort"
incremental = false
codegen-units = 1
rpath = false
[profile.bench]
# lto must be enabled in the bench profile as well for
# it to actually happen when running tests with --release
lto = true
opt-level = 3
[workspace]
resolver = "2"
members = [
"eth-connector",
"eth-connector-tests",
]