aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig14
1 files changed, 5 insertions, 9 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index 91f2aa3..728f668 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -1,26 +1,25 @@
[package]
name = "byteorder"
-version = "1.3.2" #:version
+version = "1.4.3" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = "Library for reading/writing numbers in big-endian and little-endian."
documentation = "https://docs.rs/byteorder"
homepage = "https://github.com/BurntSushi/byteorder"
repository = "https://github.com/BurntSushi/byteorder"
readme = "README.md"
-categories = ["encoding", "parsing"]
+categories = ["encoding", "parsing", "no-std"]
keywords = ["byte", "endian", "big-endian", "little-endian", "binary"]
license = "Unlicense OR MIT"
exclude = ["/ci/*"]
-build = "build.rs"
+edition = "2018"
[lib]
name = "byteorder"
bench = false
[dev-dependencies]
-quickcheck = { version = "0.8", default-features = false }
-rand = "0.6"
-doc-comment = "0.3"
+quickcheck = { version = "0.9.2", default-features = false }
+rand = "0.7"
[features]
default = ["std"]
@@ -33,6 +32,3 @@ i128 = []
[profile.bench]
opt-level = 3
-
-[badges]
-travis-ci = { repository = "BurntSushi/byteorder" }