• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

src/H03-May-2022-3,0602,348

.cargo-checksum.jsonH A D03-May-202289 11

.cargo_vcs_info.jsonH A D29-Oct-202074 65

.gitignoreH A D18-Mar-201918 32

Cargo.tomlH A D29-Oct-20201.4 KiB4843

Cargo.toml.orig-cargoH A D29-Oct-2020934 4033

LICENSE-APACHEH A D18-Mar-201910.6 KiB202169

LICENSE-MITH A D18-Mar-20191 KiB2622

README.mdH A D29-Oct-20201.6 KiB5636

RELEASES.mdH A D29-Oct-20204.4 KiB13285

README.md

1# num-complex
2
3[![crate](https://img.shields.io/crates/v/num-complex.svg)](https://crates.io/crates/num-complex)
4[![documentation](https://docs.rs/num-complex/badge.svg)](https://docs.rs/num-complex)
5[![minimum rustc 1.31](https://img.shields.io/badge/rustc-1.31+-red.svg)](https://rust-lang.github.io/rfcs/2495-min-rust-version.html)
6[![build status](https://github.com/rust-num/num-complex/workflows/master/badge.svg)](https://github.com/rust-num/num-complex/actions)
7
8`Complex` numbers for Rust.
9
10## Usage
11
12Add this to your `Cargo.toml`:
13
14```toml
15[dependencies]
16num-complex = "0.3"
17```
18
19## Features
20
21This crate can be used without the standard library (`#![no_std]`) by disabling
22the default `std` feature. Use this in `Cargo.toml`:
23
24```toml
25[dependencies.num-complex]
26version = "0.3"
27default-features = false
28```
29
30Features based on `Float` types are only available when `std` or `libm` is
31enabled. Where possible, `FloatCore` is used instead.  Formatting complex
32numbers only supports format width when `std` is enabled.
33
34## Releases
35
36Release notes are available in [RELEASES.md](RELEASES.md).
37
38## Compatibility
39
40The `num-complex` crate is tested for rustc 1.31 and greater.
41
42## License
43
44Licensed under either of
45
46 * [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0)
47 * [MIT license](http://opensource.org/licenses/MIT)
48
49at your option.
50
51### Contribution
52
53Unless you explicitly state otherwise, any contribution intentionally submitted
54for inclusion in the work by you, as defined in the Apache-2.0 license, shall be
55dual licensed as above, without any additional terms or conditions.
56