You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
483B

  1. [package]
  2. name = "tzconvert"
  3. version = "1.0.0"
  4. edition = "2018"
  5. authors = ["Jonathan Strong <jstrong@mmcxi.com>"]
  6. [lib]
  7. name = "tzconvert"
  8. path = "src/lib.rs"
  9. [[bin]]
  10. name = "tzconvert"
  11. path = "src/main.rs"
  12. [[bin]]
  13. name = "cet2est"
  14. path = "src/cet2est.rs"
  15. [[bin]]
  16. name = "est2cet"
  17. path = "src/est2cet.rs"
  18. [dependencies]
  19. chrono = { version = "0.4", features = ["serde"] }
  20. chrono-tz = { version = "0.5", features = ["serde"] }
  21. structopt = "0.3"
  22. regex = "1.5"
  23. lazy_static = "1.4"