v0.1.0
This commit is contained in:
parent
90393e5544
commit
e6576930ef
3 changed files with 27 additions and 4 deletions
12
library/compiler-builtins/libm/CHANGELOG.md
Normal file
12
library/compiler-builtins/libm/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
|
||||
|
|
@ -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"]
|
||||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue