fitsio 0.21.10

Rust implmentation of astronomy fits file handling
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Version number tests
//
// These tests will make sure the version numbers in the readme and main crate documentation stay
// in sync with the crate version number

#![allow(renamed_and_removed_lints)]
#![allow(non_fmt_panic)]

#[test]
fn test_readme_deps() {
    version_sync::assert_markdown_deps_updated!("../README.md");
}

#[test]
fn test_html_root_url() {
    version_sync::assert_html_root_url_updated!("src/lib.rs");
}