forked from rust-embedded-community/serde-json-core
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Cargo.toml
35 lines (32 loc) · 938 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
[package]
authors = [
"Jorge Aparicio <[email protected]>",
"Ethan Frey <[email protected]>",
"Simon Warta <[email protected]>",
"Mauro Lacy <[email protected]>",
"Bartłomiej Kuras <[email protected]>",
]
categories = ["wasm"]
description = "serde_json for Wasm programs (small, deterministic, no floats)"
documentation = "https://docs.rs/serde-json-wasm"
edition = "2021"
keywords = ["serde", "json", "wasm"]
license = "MIT OR Apache-2.0"
name = "serde-json-wasm"
readme = "README.md"
repository = "https://github.com/CosmWasm/serde-json-wasm"
version = "1.0.1"
exclude = [
".cargo/",
".github/",
".gitignore",
]
[dependencies]
serde = { version = "^1.0.181", default-features = false, features = ["alloc"] }
[dev-dependencies]
serde_derive = "^1.0.80"
serde_json = "^1.0.99"
[features]
default = ["std"]
std = ["serde/std"]
unstable = ["serde/unstable"]