'rust-netcdf' -> 'netcdf'

This commit is contained in:
Corey Farwell 2020-01-25 21:39:44 -05:00
parent 2fb6029c9b
commit d6b423981b
4 changed files with 12 additions and 12 deletions

View File

@ -7,7 +7,7 @@ authors = [
]
license = "MIT OR Apache-2.0"
description = "High-level NetCDF bindings for Rust"
repository = "https://github.com/georust/rust-netcdf"
repository = "https://github.com/georust/netcdf"
documentation = "https://docs.rs/crate/netcdf"
keywords = ["netcdf", "hdf", "hdf5", "libnetcdf", "netcdf4"]
edition = "2018"

View File

@ -1,13 +1,13 @@
# rust-netcdf
# netcdf
[![Docs](https://docs.rs/netcdf/badge.svg)](https://docs.rs/netcdf)
[![Build Status](https://travis-ci.org/georust/rust-netcdf.svg?branch=master)](https://travis-ci.org/georust/rust-netcdf)
[![Build Status](https://travis-ci.org/georust/netcdf.svg?branch=master)](https://travis-ci.org/georust/netcdf)
[![Crates.io](https://img.shields.io/crates/d/netcdf.svg)](https://crates.io/crates/netcdf)
[![](http://meritbadge.herokuapp.com/netcdf)](https://crates.io/crates/netcdf)
[![Coverage Status](https://coveralls.io/repos/github/georust/rust-netcdf/badge.svg?branch=master)](https://coveralls.io/github/georust/rust-netcdf?branch=master)
[![codecov](https://codecov.io/gh/georust/rust-netcdf/branch/master/graph/badge.svg)](https://codecov.io/gh/georust/rust-netcdf)
[![Coverage Status](https://coveralls.io/repos/github/georust/netcdf/badge.svg?branch=master)](https://coveralls.io/github/georust/netcdf?branch=master)
[![codecov](https://codecov.io/gh/georust/netcdf/branch/master/graph/badge.svg)](https://codecov.io/gh/georust/netcdf)
![Crates.io](https://img.shields.io/crates/l/netcdf)
[![dependency status](https://deps.rs/repo/github/georust/rust-netcdf/status.svg)](https://deps.rs/repo/github/georust/rust-netcdf)
[![dependency status](https://deps.rs/repo/github/georust/netcdf/status.svg)](https://deps.rs/repo/github/georust/netcdf)
Medium-level [netCDF](http://www.unidata.ucar.edu/software/netcdf/) bindings for Rust, allowing easy reading and writing of array-like structures to a file.
@ -35,13 +35,13 @@ The data can also be read into an [ndarray](https://github.com/rust-ndarray/rust
## Building
rust-netcdf depends on libnetcdf. The Travis build runs on Ubuntu 16.04 Xenial and installs libnetcdf via apt, which results in netcdf v.4.4.0. rust-netcdf is not widely tested on other versions of netcdf.
This crate depends on libnetcdf. The Travis build runs on Ubuntu 16.04 Xenial and installs libnetcdf via apt, which results in netcdf v.4.4.0. netcdf is not widely tested on other versions of netcdf.
You can build the library and run the tests via Docker like this:
```
docker build . -t rust-netcdf
docker run -it --rm rust-netcdf
docker build . -t netcdf
docker run -it --rm netcdf
```
## Documentation

View File

@ -1,4 +1,4 @@
rust-netcdf contains code from Unidata's NetCDF, under the following license:
netcdf contains code from Unidata's NetCDF, under the following license:
NetCDF License (http://www.unidata.ucar.edu/software/netcdf/copyright.html)
---------------

View File

@ -7,8 +7,8 @@ authors = [
]
license = "MIT"
description = "FFI bindings to NetCDF"
repository = "https://github.com/georust/rust-netcdf"
documentation = "https://github.com/georust/rust-netcdf"
repository = "https://github.com/georust/netcdf"
documentation = "https://github.com/georust/netcdf"
keywords = ["netcdf", "hdf", "hdf5", "cdm", "ffi"]
edition = "2018"
links = "netcdf"