two-way file system sync
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Cargo.toml 795B

1234567891011121314151617181920212223242526272829303132
  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", "signal", "stream", "sync", "tcp", "time"] }
  13. futures = "0.3.1"
  14. async-tungstenite = { version = "0.3", features = ["tokio-runtime"] }
  15. env_logger = "0.7"
  16. log = "0.4"
  17. rmp-serde = "0.14"
  18. fswatcher = { git = "https://github.com/mgottschlag/fswatcher-rs.git" }
  19. url = "*"
  20. range-set = "*"
  21. fslock = "0.1"
  22. rusqlite = "0.23"
  23. thiserror = "1.0"
  24. pin-project = "0.4"
  25. [dev-dependencies]
  26. criterion = "0.3"
  27. [[bench]]
  28. name = "low-level-protocol-benchmark"
  29. harness = false