changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / rust/lib/sxp/Cargo.toml

changeset 698: 96958d3eb5b0
parent: 0ccbbd142694
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 [package]
2 name = "sxp"
3 version = "0.1.0"
4 edition = "2021"
5 description = "S-eXPressions"
6 categories = ["encoding", "parser-implementations", "no-std"]
7 
8 [features]
9 default = ["std"]
10 std = ["serde/std"]
11 alloc = ["serde/alloc"]
12 # TODO
13 order = ["indexmap", "std"]
14 
15 [dependencies]
16 itoa = "1"
17 ryu = "1"
18 serde = { version = "1", default-features = false }
19 indexmap = { version = "2", optional = true }
20 
21 [dev-dependencies]
22 serde_derive = "1"
23 rand = "0.8.5"