[package] name = "unrar-async" version = "0.1.14" description = "List and extract .rar archives, async" license = "MIT" repository = "https://gitlab.cronce.io/foss/imdb-async" authors = ["Mike Cronce "] edition = "2021" [features] default = ["tokio"] tokio = ["dep:tokio"] async-std = ["dep:async-std"] [dependencies] bitflags = "2.6.0" compact_str = "0.8.0" enum-primitive-derive = "0.3.0" futures = "0.3" lazy-regex = "3.1.0" libc = "0.2" num-traits = "0.2.14" regex = "1" async-std = {version = "1", features = ["attributes", "unstable"], optional = true} tokio = {version = "1", features = ["rt"], optional = true} thiserror = "1" tracing = "0.1" unrar_sys = "0.3.1" widestring = "1.0.2" [dev-dependencies] anyhow = "1" clap = {version = "4.0.27", features = ["derive"]} tempdir = "0.3" tokio = {version = "1", features = ["macros", "rt-multi-thread"]}