-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
41 lines (33 loc) · 891 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
35
36
37
38
39
40
[package]
name = "stellar-xdr-json"
version = "22.0.0-rc.1.1"
edition = "2021"
publish = false
[lib]
crate-type = ["cdylib", "rlib"]
[features]
default = ["console_error_panic_hook"]
console_error_panic_hook = ["dep:console_error_panic_hook"]
[dependencies]
wasm-bindgen = "0.2.84"
schemars = "0.8.16"
serde_json = "1.0.114"
console_error_panic_hook = { version = "0.1.7", optional = true }
# TODO: For use with generating native values.
# serde-wasm-bindgen = "0.6.5"
[dependencies.stellar-xdr]
version = "22.0.0"
features = ["std", "curr", "base64", "serde", "serde_json", "schemars"]
# git = "https://github.com/stellar/rs-stellar-xdr"
# rev = "89a8bcde36aeda551cb0e3f9aa3e9fcf315fe1cc"
[dev-dependencies]
wasm-bindgen-test = "0.3.34"
[profile.dev]
opt-level = "z"
debug = 0
strip = "symbols"
[profile.release]
opt-level = "z"
debug = 0
strip = "symbols"
debug-assertions = false