-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 862 Bytes
/
Cargo.toml
File metadata and controls
29 lines (26 loc) · 862 Bytes
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
[package]
edition = "2021"
description = "Asynchronous SAMv3 library"
license = "MIT"
name = "yosemite"
readme = "README.md"
keywords = ["i2p", "network", "async", "sam"]
repository = "https://github.com/eepnet/yosemite"
version = "0.7.0"
[dependencies]
futures = { version = "0.3.30", optional = true }
nom = "7.1.3"
rand = "0.8.5"
smol = { version = "2.0.2", optional = true }
thiserror = "1.0.64"
tokio = { version = "1.40.0", features = ["net", "rt-multi-thread", "io-util"], optional = true }
tracing = { version = "0.1.40", features = ["log"] }
[dev-dependencies]
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
tokio = { version = "1.40.0", features = ["net", "macros", "rt-multi-thread", "time"] }
[features]
default = ["tokio"]
tokio = ["dep:futures", "dep:tokio"]
smol = ["dep:futures", "dep:smol"]
async-extra = []
sync = []