-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
30 lines (25 loc) · 933 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "sunset-embassy"
version = "0.2.0"
edition = "2021"
repository = "https://github.com/mkj/sunset"
categories = ["network-programming", "embedded", "no-std"]
license = "0BSD"
description = "async wrapper for Sunset SSH"
[dependencies]
embassy-sync = { version = "0.5" }
embassy-futures = { version = "0.1" }
embedded-io-async = "0.6"
atomic-polyfill = "1.0"
pin-utils = { version = "0.1" }
sunset = { version = "0.2.0", path = "../", features = ["embedded-io"] }
log = { version = "0.4" }
[features]
# Use a critical-section mutex to lock state. This feature must be enabled
# to run on executors that require futures to be Send (such as default Tokio).
# The application should depend on critical-section "std" feature.
# When multi-thread is disabled locking overhead is avoided.
multi-thread = []
# Remove any use of `unsafe`. This currently requires
# nightly and -Zpolonius (not ready yet)
try-polonius = []