-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (50 loc) · 1.38 KB
/
Cargo.toml
File metadata and controls
57 lines (50 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "fastcert"
version = "0.4.0"
edition = "2024"
description = "A library and CLI tool for making locally-trusted development certificates"
license = "BSD-3-Clause"
repository = "https://github.com/ozankasikci/fastcert"
homepage = "https://github.com/ozankasikci/fastcert"
documentation = "https://docs.rs/fastcert"
readme = "README.md"
keywords = ["certificate", "tls", "ssl", "development", "localhost"]
categories = ["command-line-utilities", "development-tools", "cryptography"]
authors = ["Ozan Kasikci <ozan@kasikci.io>"]
[lib]
name = "fastcert"
path = "src/lib.rs"
[[bin]]
name = "fastcert"
path = "src/main.rs"
[dependencies]
anyhow = "1.0"
thiserror = "1.0"
clap = { version = "4.5", features = ["derive"] }
rcgen = { version = "0.14", features = ["aws_lc_rs", "x509-parser"] }
ring = "0.17"
pem = "3.0"
p12 = "0.6"
dirs = "5.0"
time = { version = "0.3", features = ["formatting", "macros"] }
hostname = "0.3"
regex = "1.10"
glob = "0.3"
sha1 = "0.10"
sha2 = "0.10"
hex = "0.4"
x509-parser = "0.16"
idna = "1.0"
colored = "2.1"
[target.'cfg(target_os = "macos")'.dependencies]
security-framework = "2.9"
core-foundation = "0.9"
[target.'cfg(target_os = "windows")'.dependencies]
windows = { version = "0.52", features = ["Win32_Foundation", "Win32_Security_Cryptography"] }
[dev-dependencies]
tempfile = "3.8"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true