Cargo.toml 336 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "clock_sync"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [dependencies.darkfi]
  6. path = "../../../"
  7. features = ["async-runtime", "rpc"]
  8. [dependencies]
  9. # Ntp request
  10. ntp = "0.5.0"
  11. # Misc
  12. async-std = "1.11.0"
  13. async-native-tls = "0.4.0"
  14. log = "0.4.16"
  15. serde_json = "1.0.81"
  16. simplelog = "0.12.0"
  17. thiserror = "1.0.24"
  18. [workspace]