Skip to content

Commit 7275814

Browse files
committed
v0.1.0
1 parent 2f3151e commit 7275814

File tree

3 files changed

+26
-3
lines changed

3 files changed

+26
-3
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
This project adheres to [Semantic Versioning](http://semver.org/).
5+
6+
## [Unreleased]
7+
8+
## v0.1.0 - 2018-07-13
9+
10+
- Initial release
11+
12+
[Unreleased]: https://github.com/japaric/libm/compare/v0.1.0...HEAD

Cargo.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
[package]
2+
authors = ["Jorge Aparicio <[email protected]>"]
3+
categories = ["no-std"]
4+
description = "libm in pure Rust"
5+
documentation = "https://docs.rs/libm"
6+
keywords = ["libm", "math"]
7+
license = "MIT OR Apache-2.0"
28
name = "libm"
9+
repository = "https://github.com/japaric/libm"
310
version = "0.1.0"
4-
authors = ["Jorge Aparicio <[email protected]>"]
511

612
[workspace]
713
members = ["cb", "test-generator"]

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,13 @@ A port of [MUSL]'s libm to Rust.
66

77
## Goals
88

9-
The short term goal of this library is to enable math support (e.g. `sin`, `atan2`) for the
10-
`wasm32-unknown-unknown` target. The longer term goal is to enable math support in the `core` crate.
9+
The short term goal of this library is to [enable math support (e.g. `sin`, `atan2`) for the
10+
`wasm32-unknown-unknown` target][wasm] (cf. [rust-lang-nursery/compiler-builtins][pr]). The longer
11+
term goal is to enable [math support in the `core` crate][core].
12+
13+
[wasm]: https://github.com/japaric/libm/milestone/1
14+
[pr]: https://github.com/rust-lang-nursery/compiler-builtins/pull/248
15+
[core]: https://github.com/japaric/libm/milestone/2
1116

1217
## Contributing
1318

0 commit comments

Comments
 (0)