Skip to content

Commit

Permalink
update dependencies, organize crate descriptor, add readme and licens…
Browse files Browse the repository at this point in the history
…e to crate include, fixes #5

Signed-off-by: Sean Bruton <[email protected]>
  • Loading branch information
sbruton committed Sep 19, 2020
1 parent 77d153c commit c7ce24e
Showing 1 changed file with 22 additions and 18 deletions.
40 changes: 22 additions & 18 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,38 +1,42 @@
[package]
name = "oid"
version = "0.2.0"
version = "0.2.1"

authors = ["Sean Bruton <[email protected]>"]
edition = "2018"
publish = ["crates-io"]
categories = ["api-bindings", "cryptography", "data-structures", "embedded", "no-std"]
description = "Rust-native library for building, parsing, and formating Object Identifiers (OIDs)"
edition = "2018"
homepage = "https://labs.unnecessary.engineering/oid"
repository = "https://github.com/UnnecessaryEngineering/oid"
readme = "README.md"
keywords = ["oid", "asn1", "x500"]
categories = ["api-bindings", "cryptography", "data-structures", "embedded", "no-std"]
license = "MIT OR Apache-2.0"
include = [
"**/*.rs",
"Cargo.toml",
"**/*.rs",
"Cargo.toml",
"README.md",
"LICENSE-APACHE",
"LICENSE-MIT",
]
keywords = ["oid", "asn1", "x500"]
license = "MIT OR Apache-2.0"
publish = ["crates-io"]
readme = "README.md"
repository = "https://github.com/UnnecessaryEngineering/oid"

[badges]
travis-ci = { repository = "UnnecessaryEngineering/oid", branch = "master", service = "github" }
codecov = { repository = "UnnecessaryEngineering/oid", branch = "master", service = "github" }
is-it-maintained-issue-resolution = { repository = "UnnecessaryEngineering/oid" }
is-it-maintained-open-issues = { repository = "UnnecessaryEngineering/oid" }
maintenance = { status = "actively-developed" }
codecov = {repository = "UnnecessaryEngineering/oid", branch = "master", service = "github"}
is-it-maintained-issue-resolution = {repository = "UnnecessaryEngineering/oid"}
is-it-maintained-open-issues = {repository = "UnnecessaryEngineering/oid"}
maintenance = {status = "actively-developed"}
travis-ci = {repository = "UnnecessaryEngineering/oid", branch = "master", service = "github"}

[dependencies]
serde = { version = "1.0.115", default-features = false, optional = true }
serde = {version = "1.0.116", default-features = false, optional = true}

[dev-dependencies]
bincode = "1.3.1"
serde_derive = "1.0.115"
serde-xml-rs = "0.4.0"
serde_derive = "1.0.116"

[features]
default = ["std"]
serde_support = ["serde"]
std = []
u32 = []
serde_support = ["serde"]

0 comments on commit c7ce24e

Please sign in to comment.