forked from StellarTips/StellarTip-Contract
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 817 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (27 loc) · 817 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
[package]
name = "stellar-tip"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib"]
doctest = false
[dependencies]
# Pinned to 21.7.7 (latest 21.x line). Every `soroban-sdk 22.0.x` patch
# transitively pins `soroban-env-host = "=22.1.x"`, which compiles
# `ChaCha20Rng` into the testutils path and requires `ed25519-dalek`'s
# CryptoRng trait; combined with the recent ed25519-dalek 3.0.0 + a
# gitignored Cargo.lock, this breaks `cargo test` on CI. 21.7.7 pairs
# with `soroban-env-host 21.2.1` which compiles cleanly.
soroban-sdk = "=21.7.7"
[dev-dependencies]
soroban-sdk = { version = "=21.7.7", features = ["testutils"] }
proptest = "1.4.0"
[profile.release]
opt-level = "z"
overflow-checks = true
debug = 0
strip = "symbols"
debug-assertions = false
panic = "abort"
codegen-units = 1
lto = true