Cargo.toml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. # THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
  2. #
  3. # When uploading crates to the registry Cargo will automatically
  4. # "normalize" Cargo.toml files for maximal compatibility
  5. # with all versions of Cargo and also rewrite `path` dependencies
  6. # to registry (e.g., crates.io) dependencies.
  7. #
  8. # If you are reading this file be aware that the original Cargo.toml
  9. # will likely look very different (and much more reasonable).
  10. # See Cargo.toml.orig for the original contents.
  11. [package]
  12. edition = "2021"
  13. rust-version = "1.57.0"
  14. name = "base64"
  15. version = "0.21.0"
  16. authors = [
  17. "Alice Maz <[email protected]>",
  18. "Marshall Pierce <[email protected]>",
  19. ]
  20. description = "encodes and decodes base64 as bytes or utf8"
  21. documentation = "https://docs.rs/base64"
  22. readme = "README.md"
  23. keywords = [
  24. "base64",
  25. "utf8",
  26. "encode",
  27. "decode",
  28. "no_std",
  29. ]
  30. categories = ["encoding"]
  31. license = "MIT OR Apache-2.0"
  32. repository = "https://github.com/marshallpierce/rust-base64"
  33. [profile.bench]
  34. debug = true
  35. [profile.test]
  36. opt-level = 3
  37. [[bench]]
  38. name = "benchmarks"
  39. harness = false
  40. [dev-dependencies.criterion]
  41. version = "0.4.0"
  42. [dev-dependencies.rand]
  43. version = "0.8.5"
  44. features = ["small_rng"]
  45. [dev-dependencies.rstest]
  46. version = "0.12.0"
  47. [dev-dependencies.rstest_reuse]
  48. version = "0.3.0"
  49. [dev-dependencies.structopt]
  50. version = "0.3.26"
  51. [features]
  52. alloc = []
  53. default = ["std"]
  54. std = []