summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-09-17 21:23:41 -0700
committerAlex Crichton <alex@alexcrichton.com>2014-09-17 21:23:41 -0700
commitb8ac001faa09b1d692ecd651aa0ca121afb40b0e (patch)
treea3578b6c8a8c7826b6cf05a1120a96adc1ff330d /Cargo.toml
downloadssh2-rs-b8ac001faa09b1d692ecd651aa0ca121afb40b0e.zip
Initial commit
Bind a Session type (no I/O yet)
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml14
1 files changed, 14 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..1e7e7cb
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,14 @@
+[package]
+ name = "ssh2"
+ version = "0.0.1"
+ authors = ["Alex Crichton <alex@alexcrichton.com>"]
+
+[lib]
+ name = "ssh2"
+ doctest = false
+
+[dependencies.libssh2-static-sys]
+ git = "https://github.com/alexcrichton/libssh2-static-sys"
+
+[dependencies.link-config]
+ git = "https://github.com/alexcrichton/link-config"