diff options
| author | Eduard-Mihai Burtescu <edy.burt@gmail.com> | 2017-07-08 20:46:43 +0300 |
|---|---|---|
| committer | Eduard-Mihai Burtescu <edy.burt@gmail.com> | 2017-08-02 03:45:03 +0300 |
| commit | 877ec946543cae6f2c86742e79bcb3182e8960df (patch) | |
| tree | e75aab1a7933823472864f734d897b66f56cc1a6 /src/librustc_apfloat/Cargo.toml | |
| parent | dd53dd5f9e21dce1fbc06b7f9f451d1009bdcfd8 (diff) | |
| download | rust-877ec946543cae6f2c86742e79bcb3182e8960df.tar.gz rust-877ec946543cae6f2c86742e79bcb3182e8960df.zip | |
rustc_apfloat: introduce the base Float API.
Diffstat (limited to 'src/librustc_apfloat/Cargo.toml')
| -rw-r--r-- | src/librustc_apfloat/Cargo.toml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/librustc_apfloat/Cargo.toml b/src/librustc_apfloat/Cargo.toml new file mode 100644 index 00000000000..b8f8488e302 --- /dev/null +++ b/src/librustc_apfloat/Cargo.toml @@ -0,0 +1,11 @@ +[package] +authors = ["The Rust Project Developers"] +name = "rustc_apfloat" +version = "0.0.0" + +[lib] +name = "rustc_apfloat" +path = "lib.rs" + +[dependencies] +rustc_bitflags = { path = "../librustc_bitflags" } |
