| 1234567891011121314151617181920212223242526272829 |
- [package]
- name = "twfss"
- version = "0.1.0"
- authors = ["Mathias Gottschlag <mgottschlag@gmail.com>"]
- edition = "2018"
-
- [dependencies]
- structopt = "0.3"
- serde = { version = "1.0", features = ["derive"] }
- serde_json = "1.0"
- dirs = "2.0"
- byteorder = "1.3"
- tokio = { version = "0.2", features = ["fs", "io-util", "macros", "net", "rt-threaded", "signal", "stream", "sync", "tcp", "time"] }
- futures = "0.3.1"
- async-tungstenite = { version = "0.3", features = ["tokio-runtime"] }
- env_logger = "0.7"
- log = "0.4"
- rmp-serde = "0.14"
- fswatcher = { git = "https://github.com/mgottschlag/fswatcher-rs.git" }
- url = "*"
- range-set = "*"
- fslock = "0.1"
-
- [dev-dependencies]
- criterion = "0.3"
-
- [[bench]]
- name = "low-level-protocol-benchmark"
- harness = false
|