|
1 | 1 | [package] |
2 | | -name = "igd" |
3 | | -version = "0.11.1" |
4 | | -edition = "2018" |
5 | 2 | authors = ["Simon Bernier St-Pierre <sbernierstpierre@gmail.com>"] |
6 | 3 | description = "Internet Gateway Protocol client" |
7 | | -homepage = "https://github.com/sbstp/rust-igd" |
8 | | -repository = "https://github.com/sbstp/rust-igd" |
9 | 4 | documentation = "https://docs.rs/igd/" |
10 | | -readme = "README.md" |
| 5 | +edition = "2018" |
| 6 | +homepage = "https://github.com/sbstp/rust-igd" |
11 | 7 | keywords = ["igd", "upnp"] |
12 | 8 | license = "MIT" |
| 9 | +name = "igd" |
| 10 | +readme = "README.md" |
| 11 | +repository = "https://github.com/sbstp/rust-igd" |
| 12 | +version = "0.12.0" |
13 | 13 |
|
14 | 14 | [package.metadata.docs.rs] |
15 | 15 | all-features = true |
16 | 16 |
|
17 | 17 | [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" |
19 | 23 | rand = "0.8" |
20 | | -attohttpc = { version = "0.16", default-features = false } |
| 24 | +tokio = {version = "1", optional = true, features = ["net"]} |
21 | 25 | 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" |
27 | 27 |
|
28 | 28 | [dependencies.hyper] |
29 | | -version = "0.14" |
30 | 29 | default-features = false |
31 | | -features = [ "client", "http1", "http2", "runtime" ] |
| 30 | +features = ["client", "http1", "http2", "runtime"] |
32 | 31 | optional = true |
| 32 | +version = "0.14" |
33 | 33 |
|
34 | 34 | [dev-dependencies] |
35 | 35 | simplelog = "0.9" |
36 | | -tokio = { version = "1", features = ["full"] } |
| 36 | +tokio = {version = "1", features = ["full"]} |
37 | 37 |
|
38 | 38 | [features] |
39 | | -default = [] |
40 | 39 | aio = ["futures", "tokio", "hyper", "bytes", "http"] |
| 40 | +default = [] |
41 | 41 |
|
42 | 42 | [[example]] |
43 | 43 | name = "add_any_port" |
|
0 commit comments