two-way file system sync
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

Cargo.toml 657B

12345678910111213141516171819
  1. [package]
  2. name = "twfss"
  3. version = "0.1.0"
  4. authors = ["Mathias Gottschlag <mgottschlag@gmail.com>"]
  5. edition = "2018"
  6. [dependencies]
  7. structopt = "0.3"
  8. serde = { version = "1.0", features = ["derive"] }
  9. serde_json = "1.0"
  10. dirs = "2.0"
  11. byteorder = "1.3"
  12. tokio = { version = "0.2", features = ["fs", "io-util", "macros", "net", "rt-threaded", "stream", "sync", "tcp", "time"] }
  13. futures = "0.3.1"
  14. futures-tokio-compat = { git = "https://github.com/mgottschlag/futures-tokio-compat.git" }
  15. async-tungstenite = { version = "0.3", features = ["tokio-runtime"] }
  16. env_logger = "0.7"
  17. log = "0.4"
  18. fswatcher = { git = "https://github.com/mgottschlag/fswatcher-rs.git" }