This commit is contained in:
Jorge Aparicio 2018-07-13 19:38:51 -05:00
parent 2f3151e318
commit 7275814884
3 changed files with 27 additions and 4 deletions

12
CHANGELOG.md Normal file
View 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

View File

@ -1,7 +1,13 @@
[package]
name = "libm"
version = "0.1.0"
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]
members = ["cb", "test-generator"]

View File

@ -6,8 +6,13 @@ A port of [MUSL]'s libm to Rust.
## Goals
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.
The short term goal of this library is to [enable math support (e.g. `sin`, `atan2`) for the
`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