[package] name = "fastlib" version = "0.2.1" authors = ["Alexey McSakoff "] categories = ["parser-implementations", "encoding"] description = """ FAST (FIX Adapted for STreaming protocol) is a space and processing efficient encoding method for message oriented data streams. """ edition = "2021" keywords = ["fix", "fast", "protocol", "parser"] license = "MIT" repository = "https://github.com/mcsakoff/rs-fastlib" [dependencies] bytes = "1.6" hashbrown = "0.14" roxmltree = "0.20" serde = { version = "1.0", optional = true } thiserror = "1.0" [dev-dependencies] serde_derive = "1.0" serde_bytes = "0.11" [features] default = ["serde"] serde = [ "dep:serde", ]