forked from hemashushu/ason
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
27 lines (22 loc) · 788 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
[package]
name = "ason"
version = "1.4.0"
edition = "2021"
license = "MPL-2.0"
description = "ASON is a data format that evolved from JSON, introducing strong data typing and support for variant types."
homepage = "https://hemashushu.github.io/works/ason"
documentation = "https://hemashushu.github.io/works/ason"
repository = "https://github.com/hemashushu/ason"
readme = "README.md"
keywords = ["ason", "parser", "json", "serde", "xiaoxuan"]
categories = ["encoding", "parser-implementations"]
[dependencies]
serde = { version = "1.0.216", features = ["derive"] }
serde_bytes = "0.11"
chrono = { version = "0.4.39", features = ["serde"] }
hexfloat2 = "0.1.3"
# clap is more common, but the size is larger
# argh = "0.1.12"
[dev-dependencies]
pretty_assertions = "1.4.1"
[features]