-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (30 loc) · 1006 Bytes
/
Cargo.toml
File metadata and controls
35 lines (30 loc) · 1006 Bytes
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
[package]
name = "seeyou-cupx"
version = "0.1.0"
description = "A Rust library for parsing and writing SeeYou CUPX files, commonly used in aviation and gliding for waypoints with attached pictures"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Turbo87/seeyou-cupx-rs"
edition = "2024"
exclude = [".github/*", "benches/*", "docs/*", "examples/*", "tests/*", ".gitignore"]
[dependencies]
memchr = "2.7.4"
seeyou-cup = "0.3.0"
thiserror = "2.0.17"
zip = { version = "5.1.1", default-features = false, features = ["deflate"] }
[dev-dependencies]
criterion = "0.7.0"
insta = "1.43.2"
[[bench]]
name = "cupx_parsing"
harness = false
[[bench]]
name = "cupx_writing"
harness = false
[package.metadata.release]
pre-release-commit-message = "Release v{{version}}"
tag-message = ""
pre-release-replacements = [
{ file="README.md", search="seeyou-cupx = \"[a-z0-9\\.-]+\"", replace="seeyou-cupx = \"{{version}}\"" },
]
# Disable `cargo publish` since we use CI for publishing
publish = false