Skip to content
This repository has been archived by the owner on Nov 21, 2018. It is now read-only.

Latest commit

 

History

History
21 lines (14 loc) · 284 Bytes

README.md

File metadata and controls

21 lines (14 loc) · 284 Bytes

hexfloat

A Rust syntax extension to create floating point literals from hexadecimal strings.

Usage

Add this to your Cargo.toml:

[dependencies]

hexfloat = "*"

and this to your crate root:

#![feature(phase)]
#[phase(plugin)]
extern crate hexfloat;