Mercurial > crates > systemd-socket
annotate Cargo.toml @ 5:27456533853e
Attempt to setup CI using GitHub Actions
This sets up CI to test the crate on Ubuntu, Windows and macOS. It's expected to fail on Windows now and it will be fixed after we know which things need to be configured-away.
author | Martin Habovštiak <martin.habovstiak@gmail.com> |
---|---|
date | Fri, 27 Nov 2020 15:18:25 +0100 |
parents | 66c0e10c89fc |
children | a7893294e9b2 |
rev | line source |
---|---|
0 | 1 [package] |
2 name = "systemd_socket" | |
3 version = "0.1.0" | |
4 authors = ["Martin Habovstiak <martin.habovstiak@gmail.com>"] | |
5 edition = "2018" | |
6 | |
7 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | |
8 | |
9 [features] | |
10 serde = ["serde_crate", "serde_str_helpers"] | |
11 | |
12 [dependencies] | |
13 thiserror = "1.0.22" | |
14 serde_crate = { package = "serde", version = "1.0.117", optional = true, features = ["derive"] } | |
15 serde_str_helpers = { version = "0.1.0", optional = true } | |
16 parse_arg = { version = "0.1.4", optional = true } | |
17 libsystemd = "0.2.1" | |
18 lazy_static = "1.4.0" | |
4
66c0e10c89fc
Support resolving hostnames
Martin Habovstiak <martin.habovstiak@gmail.com>
parents:
0
diff
changeset
|
19 tokio_0_2 = { package = "tokio", version = "0.2", optional = true, features = ["tcp", "dns"] } |
0 | 20 tokio_0_3 = { package = "tokio", version = "0.3", optional = true, features = ["net"] } |
21 async-std = { version = "1.7.0", optional = true } |