Move pki-types crate into a workspace

This commit is contained in:
Dirkjan Ochtman 2023-09-13 09:47:49 +02:00
parent 4d3f58361f
commit 294e7a5b20
6 changed files with 23 additions and 20 deletions

View File

@ -1,20 +1,3 @@
[package]
name = "rustls-pki-types"
version = "0.2.1"
edition = "2021"
rust-version = "1.60"
license = "MIT OR Apache-2.0"
description = "Shared types for the rustls PKI ecosystem"
documentation = "https://docs.rs/rustls-pki-types"
homepage = "https://github.com/rustls/pki-types"
repository = "https://github.com/rustls/pki-types"
categories = ["network-programming", "data-structures", "cryptography"]
[features]
default = ["alloc"]
alloc = []
std = ["alloc"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[workspace]
resolver = "2"
members = ["pki-types"]

20
pki-types/Cargo.toml Normal file
View File

@ -0,0 +1,20 @@
[package]
name = "rustls-pki-types"
version = "0.2.1"
edition = "2021"
rust-version = "1.60"
license = "MIT OR Apache-2.0"
description = "Shared types for the rustls PKI ecosystem"
documentation = "https://docs.rs/rustls-pki-types"
homepage = "https://github.com/rustls/pki-types"
repository = "https://github.com/rustls/pki-types"
categories = ["network-programming", "data-structures", "cryptography"]
[features]
default = ["alloc"]
alloc = []
std = ["alloc"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]