-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (52 loc) · 1.36 KB
/
Cargo.toml
File metadata and controls
61 lines (52 loc) · 1.36 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
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "xt"
version = "0.20.1-dev"
description = "Translate between serialized data formats"
repository = "https://github.com/featherbread/xt"
authors = ["Alex Hamlin <alex@alexhamlin.co>"]
license = "MIT"
edition = "2024"
rust-version = "1.85.0"
resolver = "3"
categories = ["command-line-utilities"]
keywords = ["cli"]
exclude = ["benches/**"]
[dependencies]
lexopt = "0.3.1"
memmap2 = "0.9.9"
pipecheck = "0.1.3"
rmp = "0.8.12"
rmp-serde = "1.1.2"
serde = "1.0.228"
serde_json = "1.0.138"
serde_yaml = "0.9.34"
unsafe-libyaml = "0.2.11"
[dependencies.toml]
version = "0.9.11"
features = ["preserve_order"]
[dev-dependencies]
hex-literal = "1.1.0"
similar-asserts = "1.7.0"
[dev-dependencies.criterion]
version = "0.7.0"
features = ["html_reports"]
[dev-dependencies.rstest]
version = "0.26.1"
default-features = false
[[bench]]
name = "criterion"
path = "benches/criterion.rs"
harness = false
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
# The "release-opt" profile may allow the compiler to identify additional size
# and/or performance optimizations compared to the standard release profile, at
# the cost of greater compilation time and CPU consumption. You are encouraged
# to analyze and consider these tradeoffs in the context of your unique
# environment and use of xt.
[profile.release-opt]
inherits = "release"
lto = true
codegen-units = 1