-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (46 loc) · 1.37 KB
/
Cargo.toml
File metadata and controls
50 lines (46 loc) · 1.37 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[profile.release]
lto = true
[workspace]
members = [
"parser",
"parser/tools/walk",
"saphyr",
"bench",
"bench/tools/gen_large_yaml",
"bench/tools/bench_compare",
"fuzz",
]
resolver = "2"
[workspace.package]
authors = [
"Ethiraric <ethiraric@gmail.com>",
"David Aguilar <davvid@gmail.com>",
"Yuheng Chen <yuhengchen@sensetime.com>"
]
version = "0.0.6"
documentation = "https://docs.rs/saphyr"
keywords = [ "yaml", "parser" ]
categories = [ "encoding", "parser-implementations" ]
license = "MIT OR Apache-2.0"
description = "A fully YAML 1.2 compliant YAML library"
repository = "https://github.com/saphyr-rs/saphyr"
readme = "README.md"
edition = "2021"
rust-version = "1.65.0"
[workspace.dependencies]
arraydeque = { version = "0.5.1", default-features = false }
encoding_rs = { version = "0.8.35" }
# Keep in sync with hashlink to reduce dependency duplication
hashbrown = { version = "0.16", default-features = false, features = ["default-hasher"] }
hashlink = "0.11"
libtest-mimic = "0.8.1"
miette = { version = "7.5.0", features = ["fancy"] }
ordered-float = { version = "5.1", default-features = false }
quickcheck = "1.0"
rustyline = "17.0.2"
saphyr = { path = "saphyr" }
saphyr-bench = { path = "bench" }
saphyr-parser = { path = "parser" }
thiserror = { version = "2.0.17", default-features = false }
[workspace.lints.rust]
unsafe_op_in_unsafe_fn = "deny"