# 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 = "ector" version = "0.6.0" build = "build.rs" exclude = [".github"] autobins = false autoexamples = false autotests = false autobenches = false description = "Ector is an open source async, no-alloc actor framework for embedded devices." homepage = "https://drogue.io" documentation = "https://docs.rs/ector" readme = "README.md" keywords = [ "embedded", "async", "actor", ] license = "Apache-2.0" repository = "https://github.com/drogue-iot/ector" [lib] name = "ector" path = "src/lib.rs" doctest = false [[example]] name = "cancel_panic" path = "examples/cancel_panic.rs" [[example]] name = "macro-usage" path = "examples/macro-usage.rs" [[example]] name = "pingpong" path = "examples/pingpong.rs" [[example]] name = "request" path = "examples/request.rs" [[example]] name = "send" path = "examples/send.rs" [[test]] name = "notifications" path = "tests/notifications.rs" [dependencies.defmt] version = "0.3" optional = true [dependencies.ector-macros] version = "0.5.1" [dependencies.embassy-executor] version = "0.6" default-features = false [dependencies.embassy-sync] version = "0.6" default-features = false [dependencies.futures] version = "0.3" default-features = false [dependencies.log] version = "0.4" optional = true [dependencies.portable-atomic] version = "1.3" default-features = false [dependencies.static_cell] version = "2.1" [dev-dependencies.critical-section] version = "1.2.0" features = ["std"] [dev-dependencies.embassy-executor] version = "0.6.0" features = [ "integrated-timers", "arch-std", "executor-thread", ] default-features = false [dev-dependencies.embassy-time] version = "0.3.2" features = ["std"] default-features = false [dev-dependencies.futures] version = "0.3.31" features = ["executor"] default-features = false [features] default = [ "std", "log", "time", ] std = [ "embassy-executor/integrated-timers", "embassy-executor/arch-std", "embassy-time/std", "critical-section/std", ] test-utils = [] time = []