Skip to content

Commit

Permalink
Rename myself
Browse files Browse the repository at this point in the history
  • Loading branch information
simonrw committed Dec 19, 2022
1 parent f43d11b commit fdb8b07
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Before submitting a completed PR, make sure the following items have been addres
* **update the features tracking issue** - if relevant, update the [features tracking issue][features-tracking-issue]
* **update the full example** - if new features have been added, or changes made, update the `full_example.rs` example

[features-tracking-issue]: https://github.com/mindriot101/rust-fitsio/issues/15
[features-tracking-issue]: https://github.com/simonrw/rust-fitsio/issues/15

---

Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

FFI wrapper around cfitsio in Rust

[![Join the chat at https://gitter.im/mindriot101/rust-fitsio](https://badges.gitter.im/mindriot101/rust-fitsio.svg)](https://gitter.im/rust-fitsio/Lobby?utm_source=share-link&utm_medium=link&utm_campaign=share-link)
[![Build Status](https://travis-ci.org/mindriot101/rust-fitsio.svg?branch=master)](https://travis-ci.org/mindriot101/rust-fitsio)
[![Coverage Status](https://coveralls.io/repos/github/mindriot101/rust-fitsio/badge.svg?branch=master)](https://coveralls.io/github/mindriot101/rust-fitsio?branch=master)
[![Join the chat at https://gitter.im/simonrw/rust-fitsio](https://badges.gitter.im/simonrw/rust-fitsio.svg)](https://gitter.im/rust-fitsio/Lobby?utm_source=share-link&utm_medium=link&utm_campaign=share-link)
[![Build Status](https://travis-ci.org/simonrw/rust-fitsio.svg?branch=master)](https://travis-ci.org/simonrw/rust-fitsio)
[![Coverage Status](https://coveralls.io/repos/github/simonrw/rust-fitsio/badge.svg?branch=master)](https://coveralls.io/github/simonrw/rust-fitsio?branch=master)

## Platform support

Expand Down Expand Up @@ -59,7 +59,7 @@ stable. Add this to your `Cargo.toml` file:

```toml,no_sync
[dependencies]
fitsio = { git = "https://github.com/mindriot101/rust-fitsio" }
fitsio = { git = "https://github.com/simonrw/rust-fitsio" }
```

If you want the latest release from `crates.io` then add the following:
Expand Down Expand Up @@ -102,7 +102,7 @@ fitsio = { version = "0.21.0", default-features = false, features = ["bindgen"]

## Feature support

Supported features of the underlying `cfitsio` library that _are_ available in `fitsio` are detailed in [this tracking issue](https://github.com/mindriot101/rust-fitsio/issues/15). If a particular function is not implemented in `fitsio`, then the underlying `fitsfile` pointer can be accessed through an unsafe API.
Supported features of the underlying `cfitsio` library that _are_ available in `fitsio` are detailed in [this tracking issue](https://github.com/simonrw/rust-fitsio/issues/15). If a particular function is not implemented in `fitsio`, then the underlying `fitsfile` pointer can be accessed through an unsafe API.

## Examples

Expand Down
4 changes: 2 additions & 2 deletions fitsio-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ edition = "2018"
version = "0.2.0"
authors = ["Simon Walker <s.r.walker101@googlemail.com>"]
description = "Custom derive macros for the fitsio crate"
homepage = "https://github.com/mindriot101/rust-fitsio"
repository = "https://github.com/mindriot101/rust-fitsio"
homepage = "https://github.com/simonrw/rust-fitsio"
repository = "https://github.com/simonrw/rust-fitsio"
readme = "README.md"
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/fitsio-derive"
Expand Down
4 changes: 2 additions & 2 deletions fitsio-sys-bindgen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ edition = "2018"
version = "0.0.5"
authors = ["Simon Walker <s.r.walker101@googlemail.com>"]
description = "FFI wrapper around cfitsio"
homepage = "https://github.com/mindriot101/rust-fitsio"
repository = "https://github.com/mindriot101/rust-fitsio"
homepage = "https://github.com/simonrw/rust-fitsio"
repository = "https://github.com/simonrw/rust-fitsio"
readme = "README.md"
license = "MIT/Apache-2.0"
build = "build.rs"
Expand Down
4 changes: 2 additions & 2 deletions fitsio-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ version = "0.5.0"
edition = "2018"
authors = ["Simon Walker <s.r.walker101@googlemail.com>"]
description = "FFI wrapper around cfitsio"
homepage = "https://github.com/mindriot101/rust-fitsio"
repository = "https://github.com/mindriot101/rust-fitsio"
homepage = "https://github.com/simonrw/rust-fitsio"
repository = "https://github.com/simonrw/rust-fitsio"
readme = "README.md"
license = "MIT/Apache-2.0"
build = "build.rs"
Expand Down
4 changes: 2 additions & 2 deletions fitsio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ categories = ["external-ffi-bindings", "science"]
description = "Rust implmentation of astronomy fits file handling"
documentation = "https://docs.rs/fitsio"
edition = "2018"
homepage = "https://github.com/mindriot101/rust-fitsio"
homepage = "https://github.com/simonrw/rust-fitsio"
license = "MIT/Apache-2.0"
name = "fitsio"
readme = "README.md"
repository = "https://github.com/mindriot101/rust-fitsio"
repository = "https://github.com/simonrw/rust-fitsio"
version = "0.21.0"
rust-version = "1.57.0"

Expand Down
2 changes: 1 addition & 1 deletion fitsio/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
* [CHANGELOG][2]

[1]: https://docs.rs/fitsio
[2]: https://github.com/mindriot101/rust-fitsio/blob/master/CHANGELOG.md
[2]: https://github.com/simonrw/rust-fitsio/blob/master/CHANGELOG.md
2 changes: 1 addition & 1 deletion fitsio/tbump.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Uncomment this if your project is hosted on GitHub:
github_url = "https://github.com/mindriot101/rust-fitsio"
github_url = "https://github.com/simonrw/rust-fitsio"

[version]
current = "0.19.0"
Expand Down
2 changes: 1 addition & 1 deletion fitsio/tests/test_ushort.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* Reading unsupported data types throws error
* See issue 35: https://github.com/mindriot101/rust-fitsio/issues/35
* See issue 35: https://github.com/simonrw/rust-fitsio/issues/35
*
*
*/
Expand Down
6 changes: 3 additions & 3 deletions homepage/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ to read and write astronomy-specific files.
[`cfitsio`]: http://heasarc.gsfc.nasa.gov/fitsio/fitsio.html
[Rust]: https://rust-lang.org/
[Documentation]: https://docs.rs/fitsio
[Changelog]: https://github.com/mindriot101/rust-fitsio/blob/master/CHANGELOG.md
[Contributing guide]: https://github.com/mindriot101/rust-fitsio/blob/master/CONTRIBUTING.md
[Issue tracker]: https://github.com/mindriot101/rust-fitsio/issues
[Changelog]: https://github.com/eimonrw/rust-fitsio/blob/master/CHANGELOG.md
[Contributing guide]: https://github.com/simonrw/rust-fitsio/blob/master/CONTRIBUTING.md
[Issue tracker]: https://github.com/simonrw/rust-fitsio/issues
[News]: news/index.html

0 comments on commit fdb8b07

Please sign in to comment.