| 1 | [package] |
| 2 | name = "webpki-roots" |
| 3 | version = "0.26.8" |
| 4 | edition = { workspace = true } |
| 5 | readme = "README.md" |
| 6 | license = "MPL-2.0" |
| 7 | homepage = { workspace = true } |
| 8 | repository = { workspace = true } |
| 9 | description = "Mozilla's CA root certificates for use with webpki" |
| 10 | |
| 11 | [dependencies] |
| 12 | pki-types = { workspace = true } |
| 13 | |
| 14 | [dev-dependencies] |
| 15 | hex = { workspace = true } |
| 16 | percent-encoding = "2.3" |
| 17 | rcgen = "0.13" |
| 18 | ring = "0.17.0" |
| 19 | rustls = "0.23" |
| 20 | tokio = { version = "1" , features = ["macros" , "rt-multi-thread" ] } |
| 21 | webpki = { workspace = true } |
| 22 | webpki-ccadb = { path = "../webpki-ccadb" } |
| 23 | x509-parser = { workspace = true } |
| 24 | yasna = { workspace = true } |
| 25 | |