1[package] 2name = "hls" 3description = "hls library." 4version = "0.4.1" 5authors = ["HarlanC <[email protected]"] 6repository = "https://github.com/harlanc/xiu" 7license = "MIT" 8readme = "README.md" 9categories = ["multimedia", "multimedia::video", 'multimedia::audio'] 10keywords = ["hls", "video", "streaming"] 11edition = "2018" 12 13[dependencies] 14byteorder = "1.4.2" 15bytes = "1.0.0" 16failure = "0.1.1" 17log = "0.4" 18hyper = { version = "0.14", features = ["full"] } 19tokio-util = { version = "0.6.5", features = ["codec"] } 20 21streamhub = { path = "../../library/streamhub/" } 22xmpegts = { path = "../../library/container/mpegts/" } 23xflv = { path = "../../library/container/flv/" } 24rtmp = { path = "../rtmp/" } 25 26[dependencies.tokio] 27version = "1.4.0" 28default-features = false 29features = ["full"] 30