fastcert 0.1.0

A simple zero-config tool for making locally-trusted development certificates
Documentation
[[bin]]
name = "fastcert"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.clap]
features = ["derive"]
version = "4.5"

[dependencies.colored]
version = "2.1"

[dependencies.dirs]
version = "5.0"

[dependencies.glob]
version = "0.3"

[dependencies.hex]
version = "0.4"

[dependencies.hostname]
version = "0.3"

[dependencies.idna]
version = "1.0"

[dependencies.p12]
version = "0.6"

[dependencies.pem]
version = "3.0"

[dependencies.rcgen]
features = ["aws_lc_rs", "x509-parser"]
version = "0.14"

[dependencies.regex]
version = "1.10"

[dependencies.ring]
version = "0.17"

[dependencies.sha1]
version = "0.10"

[dependencies.sha2]
version = "0.10"

[dependencies.thiserror]
version = "1.0"

[dependencies.time]
features = ["formatting", "macros"]
version = "0.3"

[dependencies.x509-parser]
version = "0.16"

[dev-dependencies.tempfile]
version = "3.8"

[lib]
name = "fastcert"
path = "src/lib.rs"

[package]
authors = ["Ozan Kasikci <ozan@kasikci.io>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["command-line-utilities", "development-tools"]
description = "A simple zero-config tool for making locally-trusted development certificates"
documentation = "https://github.com/ozankasikci/fastcert#readme"
edition = "2024"
homepage = "https://github.com/ozankasikci/fastcert"
keywords = ["certificate", "tls", "ssl", "development", "localhost"]
license = "MIT"
name = "fastcert"
readme = "README.md"
repository = "https://github.com/ozankasikci/fastcert"
version = "0.1.0"

[profile.release]
codegen-units = 1
lto = true
opt-level = 3
strip = true

[target.'cfg(target_os = "macos")'.dependencies.core-foundation]
version = "0.9"

[target.'cfg(target_os = "macos")'.dependencies.security-framework]
version = "2.9"

[target.'cfg(target_os = "windows")'.dependencies.windows]
features = ["Win32_Foundation", "Win32_Security_Cryptography"]
version = "0.52"

[[test]]
name = "e2e"
path = "tests/e2e.rs"

[[test]]
name = "integration"
path = "tests/integration.rs"

[[test]]
name = "security"
path = "tests/security.rs"