-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
35 lines (29 loc) · 1.01 KB
/
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
31
32
33
34
35
[package]
name = "autoconfig"
authors = ["Guus van Meerveld"]
description = "A simple implementation of Mozilla Thunderbird's autoconfig"
license = "MIT"
documentation = "https://docs.dust.email/packages/autoconfig"
repository = "https://github.com/Dust-Mail/autoconfig"
readme = "README.md"
version = "0.4.0"
edition = "2021"
rust-version = "1.65.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde-xml-rs = "0.6"
serde = {version = "1", features = ["derive"] }
futures = "0.3"
regex = "1.10"
bytes = "1.5.0"
trust-dns-resolver = "0.22.0"
async-std-resolver = { version = "0.22.0", optional = true }
trust-dns-proto = "0.23.2"
surf = { version = "2.3.2", default-features = false, features = ["curl-client", "encoding"]}
[dev-dependencies]
async-std = {version = "1.12.0", features = ["attributes"]}
tokio = { version = "1.35", features = ["full"] }
[features]
default = ["runtime-tokio"]
runtime-tokio = []
runtime-async-std = [ "dep:async-std-resolver"]