-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 636 Bytes
/
Cargo.toml
File metadata and controls
26 lines (23 loc) · 636 Bytes
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
[package]
name = "srisum"
version = "5.0.1-alpha.0"
description = "Compute and check subresource integrity digests"
authors = ["Kat Marchán <[email protected]>"]
repository = "https://github.com/zkat/srisum-rs"
homepage = "https://github.com/zkat/srisum-rs"
license-file = "LICENSE.md"
readme = "README.md"
edition = "2021"
[profile.release]
lto = true
codegen-units = 1
# generated by 'cargo dist init'
[profile.dist]
inherits = "release"
debug = true
split-debuginfo = "packed"
[dependencies]
ssri = "7.0.0"
clap = { version = "4.1.4", features = ["derive"] }
miette = { version = "5.5.0", features = ["fancy"] }
thiserror = "1.0.38"