two-way file system sync
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

Cargo.toml 611B

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