about summary refs log tree commit diff
path: root/src/librustc_apfloat/Cargo.toml
diff options
context:
space:
mode:
authorEduard-Mihai Burtescu <edy.burt@gmail.com>2017-07-08 20:46:43 +0300
committerEduard-Mihai Burtescu <edy.burt@gmail.com>2017-08-02 03:45:03 +0300
commit877ec946543cae6f2c86742e79bcb3182e8960df (patch)
treee75aab1a7933823472864f734d897b66f56cc1a6 /src/librustc_apfloat/Cargo.toml
parentdd53dd5f9e21dce1fbc06b7f9f451d1009bdcfd8 (diff)
downloadrust-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.toml11
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" }