v0.1.0
This commit is contained in:
parent
2f3151e318
commit
7275814884
12
CHANGELOG.md
Normal file
12
CHANGELOG.md
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
# Change Log
|
||||||
|
|
||||||
|
All notable changes to this project will be documented in this file.
|
||||||
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
|
## [Unreleased]
|
||||||
|
|
||||||
|
## v0.1.0 - 2018-07-13
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
[Unreleased]: https://github.com/japaric/libm/compare/v0.1.0...HEAD
|
10
Cargo.toml
10
Cargo.toml
@ -1,7 +1,13 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "libm"
|
|
||||||
version = "0.1.0"
|
|
||||||
authors = ["Jorge Aparicio <jorge@japaric.io>"]
|
authors = ["Jorge Aparicio <jorge@japaric.io>"]
|
||||||
|
categories = ["no-std"]
|
||||||
|
description = "libm in pure Rust"
|
||||||
|
documentation = "https://docs.rs/libm"
|
||||||
|
keywords = ["libm", "math"]
|
||||||
|
license = "MIT OR Apache-2.0"
|
||||||
|
name = "libm"
|
||||||
|
repository = "https://github.com/japaric/libm"
|
||||||
|
version = "0.1.0"
|
||||||
|
|
||||||
[workspace]
|
[workspace]
|
||||||
members = ["cb", "test-generator"]
|
members = ["cb", "test-generator"]
|
@ -6,8 +6,13 @@ A port of [MUSL]'s libm to Rust.
|
|||||||
|
|
||||||
## Goals
|
## Goals
|
||||||
|
|
||||||
The short term goal of this library is to enable math support (e.g. `sin`, `atan2`) for the
|
The short term goal of this library is to [enable math support (e.g. `sin`, `atan2`) for the
|
||||||
`wasm32-unknown-unknown` target. The longer term goal is to enable math support in the `core` crate.
|
`wasm32-unknown-unknown` target][wasm] (cf. [rust-lang-nursery/compiler-builtins][pr]). The longer
|
||||||
|
term goal is to enable [math support in the `core` crate][core].
|
||||||
|
|
||||||
|
[wasm]: https://github.com/japaric/libm/milestone/1
|
||||||
|
[pr]: https://github.com/rust-lang-nursery/compiler-builtins/pull/248
|
||||||
|
[core]: https://github.com/japaric/libm/milestone/2
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user