two-way file system sync
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233
  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. uuid = { version = "0.8", features = ["serde", "v4"] }
  26. [dev-dependencies]
  27. criterion = "0.3"
  28. [[bench]]
  29. name = "low-level-protocol-benchmark"
  30. harness = false