-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (27 loc) · 761 Bytes
/
Cargo.toml
File metadata and controls
33 lines (27 loc) · 761 Bytes
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
[package]
name = "oracle-aggregator"
version = "2.0.0"
authors = ["Script3 Ltd. <gm@script3.io>"]
license = "MIT"
edition = "2021"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib", "rlib"]
doctest = false
[profile.release]
opt-level = "z"
overflow-checks = true # DEV: Do not remove this check - doing so will create vulnerabilities
debug = 0
strip = "symbols"
debug-assertions = false
panic = "abort"
codegen-units = 1
lto = true
[features]
testutils = ["soroban-sdk/testutils"]
[dependencies]
soroban-sdk = "22.0.7"
[dev-dependencies]
soroban-sdk = { version = "22.0.7", features = ["testutils"] }
sep-40-oracle = {version = "1.2.2", features = ["testutils"]}