Skip to content
This repository was archived by the owner on Dec 8, 2023. It is now read-only.

Commit 471d4f6

Browse files
author
Simon Bernier St-Pierre
committed
Version 0.12.0
1 parent 9fd2b57 commit 471d4f6

1 file changed

Lines changed: 17 additions & 17 deletions

File tree

Cargo.toml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,43 @@
11
[package]
2-
name = "igd"
3-
version = "0.11.1"
4-
edition = "2018"
52
authors = ["Simon Bernier St-Pierre <sbernierstpierre@gmail.com>"]
63
description = "Internet Gateway Protocol client"
7-
homepage = "https://github.com/sbstp/rust-igd"
8-
repository = "https://github.com/sbstp/rust-igd"
94
documentation = "https://docs.rs/igd/"
10-
readme = "README.md"
5+
edition = "2018"
6+
homepage = "https://github.com/sbstp/rust-igd"
117
keywords = ["igd", "upnp"]
128
license = "MIT"
9+
name = "igd"
10+
readme = "README.md"
11+
repository = "https://github.com/sbstp/rust-igd"
12+
version = "0.12.0"
1313

1414
[package.metadata.docs.rs]
1515
all-features = true
1616

1717
[dependencies]
18-
xmltree = "0.10"
18+
attohttpc = {version = "0.16", default-features = false}
19+
bytes = {version = "1", optional = true}
20+
futures = {version = "0.3", optional = true}
21+
http = {version = "0.2", optional = true}
22+
log = "0.4"
1923
rand = "0.8"
20-
attohttpc = { version = "0.16", default-features = false }
24+
tokio = {version = "1", optional = true, features = ["net"]}
2125
url = "2"
22-
log = "0.4"
23-
futures = { version = "0.3", optional = true }
24-
tokio = { version = "1", optional = true, features = ["net"] }
25-
bytes = { version = "1", optional = true }
26-
http = {version = "0.2", optional = true }
26+
xmltree = "0.10"
2727

2828
[dependencies.hyper]
29-
version = "0.14"
3029
default-features = false
31-
features = [ "client", "http1", "http2", "runtime" ]
30+
features = ["client", "http1", "http2", "runtime"]
3231
optional = true
32+
version = "0.14"
3333

3434
[dev-dependencies]
3535
simplelog = "0.9"
36-
tokio = { version = "1", features = ["full"] }
36+
tokio = {version = "1", features = ["full"]}
3737

3838
[features]
39-
default = []
4039
aio = ["futures", "tokio", "hyper", "bytes", "http"]
40+
default = []
4141

4242
[[example]]
4343
name = "add_any_port"

0 commit comments

Comments
 (0)