-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
34 lines (29 loc) · 817 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
33
34
[package]
name = "rs-edunode-sdk"
version = "0.1.1"
edition = "2021"
description = "The edunode SDK for rust"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib"]
[features]
testutils = ["soroban-sdk/testutils"]
[dependencies]
chrono = { version = "0.4.24", default-features = false, features = ["serde"] }
serde = { version = "1.0.*", default-features = false }
postcard = { version = "1.0.4", features = ["alloc"] }
thiserror-no-std = "2.0.2"
soroban-sdk = "0.8.4"
wee_alloc = "0.4.5"
[dev_dependencies]
soroban-sdk = { version = "0.8.4", features = ["testutils"] }
[profile.release]
opt-level = "z"
overflow-checks = true
debug = 0
strip = "symbols"
debug-assertions = false
panic = "abort"
codegen-units = 1
lto = true