# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "embassy-mock" version = "0.4.0" authors = ["Callum Dunster"] description = "An unofficial collection of mocked types for the Embassy framework" readme = "README.md" license = "MIT" repository = "https://github.com/cdunster/embassy-mock" [[example]] name = "executor" test = true required-features = [ "executor", "examples", ] [[example]] name = "ticker" test = true required-features = [ "time", "examples", ] [[example]] name = "timer" test = true required-features = [ "time", "examples", ] [[example]] name = "concrete-types" test = true required-features = [ "executor", "time", "examples", ] [dependencies.embassy-executor] version = "0.5.0" features = ["nightly"] optional = true [dependencies.embassy-time] version = "0.3.0" optional = true [dependencies.snafu] version = "0.7.5" default-features = false [dev-dependencies.embassy-executor] version = "0.5.0" features = [ "arch-std", "executor-thread", "integrated-timers", "nightly", ] [dev-dependencies.embassy-futures] version = "0.1.0" [dev-dependencies.embassy-time] version = "0.3.0" features = ["std"] [features] default = [ "executor", "time", ] examples = [ "dep:embassy-time", "embassy-time/std", "embassy-executor/executor-thread", "embassy-executor/arch-std", "embassy-executor/integrated-timers", ] executor = ["dep:embassy-executor"] time = ["dep:embassy-time"]