[package] name = "ut" version = "0.3.0" authors = ["michael "] edition = "2018" license = "MIT" description = "UT automatically wraps async functions in a synchronous wrapper based on feature flags" repository = "https://github.com/yuulive/ut.git" readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] proc-macro = true [features] # by default enable the sync feature for tests default = ["sync"] sync = [] [dependencies] syn = { version = "1", features = ["full"] } quote = "1" tokio = { version = "0.3", features = ["full"] }