diff options
author | Matias Linares <matiaslina@openmailbox.org> | 2015-11-19 21:11:34 -0300 |
---|---|---|
committer | Matias Linares <matiaslina@openmailbox.org> | 2015-11-19 21:11:34 -0300 |
commit | a21473f60c6cfad6335db3b0b45cdff23f8b3a89 (patch) | |
tree | b5e37b1cd9d2146c5930c75aca84c74a9fbcc57d /Cargo.lock | |
parent | 27d0eddd4c1cc275d90938c350a3563428ec5b4f (diff) | |
download | dotwm-a21473f60c6cfad6335db3b0b45cdff23f8b3a89.tar.gz |
Implemented socket handler.
First steps on the socket handling. Dotwm will use this for communication between
different clients trying to modify the behaviour (just take a look into hlwm's
herbstclient program).
It's needed a parser for the configuration, make the protocol and get it working
better. For now I'm checking if it's anything into the socket every time I've a
XEvent. But it shouldn't be this way.
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -3,10 +3,16 @@ name = "dotwm" version = "0.1.0" dependencies = [ "libc 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "unix_socket 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "x11 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] +name = "cfg-if" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] name = "libc" version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -22,6 +28,15 @@ version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] +name = "unix_socket" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] name = "x11" version = "2.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" |