| 1 | [package]
|
| 2 | name = "lebe"
|
| 3 | version = "0.5.2"
|
| 4 | authors = ["johannesvollmer <johannes596@t-online.de>" ]
|
| 5 | edition = "2018"
|
| 6 |
|
| 7 | description = "Tiny, dead simple, high performance endianness conversions with a generic API"
|
| 8 | repository = "https://github.com/johannesvollmer/lebe"
|
| 9 | documentation = "https://docs.rs/crate/lebe/"
|
| 10 | readme = "README.md"
|
| 11 | license = "BSD-3-Clause"
|
| 12 | keywords = ["endianness" , "binary" , "io" , "byteorder" , "endian" ]
|
| 13 | categories = ["encoding" , "filesystem" , "algorithms" ]
|
| 14 |
|
| 15 | [lib]
|
| 16 | path = "src/lib.rs"
|
| 17 | test = true
|
| 18 | doctest = true
|
| 19 | bench = true
|
| 20 | doc = true
|
| 21 | plugin = false
|
| 22 | proc-macro = false
|
| 23 |
|
| 24 |
|
| 25 | [badges]
|
| 26 | maintenance = { status = "actively-developed" }
|
| 27 |
|
| 28 | [features]
|
| 29 | # simd = []
|
| 30 |
|
| 31 | [dev-dependencies]
|
| 32 | bencher = "0.1.5"
|
| 33 | byteorder = "1.4.3"
|
| 34 |
|
| 35 | [[bench]]
|
| 36 | name = "benches"
|
| 37 | harness = false
|
| 38 |
|
| 39 | [profile.bench]
|
| 40 | lto = true
|
| 41 | debug = true
|
| 42 |
|
| 43 | |