2015-05-24 06:27:42 +00:00
|
|
|
[package]
|
2024-04-02 16:49:52 +00:00
|
|
|
name = "saphyr"
|
|
|
|
version = "0.0.1"
|
2024-02-08 06:12:14 +00:00
|
|
|
authors = [
|
|
|
|
"Yuheng Chen <yuhengchen@sensetime.com>",
|
2024-03-17 07:48:26 +00:00
|
|
|
"Ethiraric <ethiraric@gmail.com>",
|
|
|
|
"David Aguilar <davvid@gmail.com>"
|
2024-02-08 06:12:14 +00:00
|
|
|
]
|
2024-04-02 16:49:52 +00:00
|
|
|
documentation = "https://docs.rs/saphyr"
|
|
|
|
keywords = [ "yaml", "parser" ]
|
|
|
|
categories = [ "encoding", "parser-implementations" ]
|
2024-01-23 14:20:12 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2024-04-02 16:49:52 +00:00
|
|
|
description = "A fully YAML 1.2 compliant YAML library"
|
|
|
|
repository = "https://github.com/saphyr-rs/saphyr"
|
2018-09-15 19:25:15 +00:00
|
|
|
readme = "README.md"
|
2024-03-17 07:49:13 +00:00
|
|
|
edition = "2021"
|
2024-03-30 18:39:53 +00:00
|
|
|
rust-version = "1.70.0"
|
2024-03-30 18:24:54 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = [ "encoding" ]
|
|
|
|
encoding = [ "dep:encoding_rs" ]
|
2016-02-28 00:30:13 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2024-02-13 22:10:32 +00:00
|
|
|
arraydeque = "0.5.1"
|
2024-06-13 20:23:05 +00:00
|
|
|
saphyr-parser = "0.0.2"
|
2024-03-30 18:24:54 +00:00
|
|
|
encoding_rs = { version = "0.8.33", optional = true }
|
2020-05-26 10:35:06 +00:00
|
|
|
hashlink = "0.8"
|
2017-03-12 16:02:18 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-03-17 08:40:46 +00:00
|
|
|
quickcheck = "1.0"
|
2023-08-17 00:17:53 +00:00
|
|
|
|
|
|
|
[profile.release-lto]
|
|
|
|
inherits = "release"
|
|
|
|
lto = true
|