-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
31 lines (24 loc) · 832 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
[package]
name = "keon"
version = "0.2.0"
edition = "2021"
rust-version = "1.74.0"
authors = ["K--Aethiax"]
description = "A human readable object notation that syntactic similar to Rust and fully supports Serde's data model."
documentation = "https://docs.rs/keon"
repository = "https://github.com/eternal-io/keon"
license = "MIT OR Apache-2.0"
readme = "CRATES.IO-README.md"
keywords = ["serde", "serialization", "object-notation", "format", "parser"]
categories = ["encoding"]
include = ["src/**", "tests/**", "examples/**"]
[dependencies]
serde = { version = "1.0.217", features = ["derive"] }
logos = "0.15.0"
smol_str = "0.3.2"
data-encoding = "2.6.0"
unicode-ident = "1.0.13"
lexical-core = { version = "1.0.2", features = ["format", "power-of-two"] }
[dev-dependencies]
serde_json = "1.0.137"
serde_bytes = "0.11.15"