-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (27 loc) · 1014 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (27 loc) · 1014 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
[package]
name = "leapseconds-rs"
version = "0.1.0"
edition = "2021"
rust-version = "1.74"
description = "Rust port of upstream leapseconds.awk — the tzdb leap-second source generator"
license = "Apache-2.0"
repository = "https://github.com/infinityabundance/leapseconds-rs"
homepage = "https://github.com/infinityabundance/leapseconds-rs"
authors = ["infinityabundance"]
keywords = ["tzdb", "timezone", "leapseconds", "leap-second", "iers"]
categories = ["command-line-utilities", "parser-implementations"]
readme = "README.md"
exclude = ["lab/", "reports/", "fuzz/", "tests/fixtures/oracle/", ".gitignore", "STATUS.md"]
[[bin]]
name = "leapseconds-rs"
path = "src/main.rs"
[features]
fuzzing = []
# No runtime dependencies: leapseconds.awk does only field splitting, fixed
# string edits, and integer arithmetic — no regex. `#![forbid(unsafe_code)]`.
[dev-dependencies]
sha2 = "0.10"
[profile.release]
overflow-checks = true
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(kani)'] }