mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-09-14 18:01:58 +00:00
Derive a version from the encoded Ghostty terminfo and require callers to pass it explicitly when reading or writing the SSH cache. Cache entries created for older or different payloads no longer suppress a required installation.
15 lines
584 B
Zig
15 lines
584 B
Zig
//! Package terminfo provides functionality related to terminfo/termcap files.
|
|
//!
|
|
//! At the time of writing this comment, the focus is on generating terminfo
|
|
//! files so that we can maintain our terminfo in Zig instead of hand-writing
|
|
//! the archaic (imo) terminfo format by hand. But eventually we may want to
|
|
//! extract this into a more full-featured library on its own.
|
|
|
|
pub const ghostty = @import("ghostty.zig").ghostty;
|
|
pub const version = @import("ghostty.zig").version;
|
|
pub const Source = @import("Source.zig");
|
|
|
|
test {
|
|
@import("std").testing.refAllDecls(@This());
|
|
}
|