diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2016-11-29 18:12:24 +0100 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2016-11-29 19:17:30 +0100 |
| commit | 9cc59fb676e1d1fd2309bc7e12f1e3749af7f8b2 (patch) | |
| tree | c11a288a7260aad93794ab5c79eaff24ad48a39c | |
| parent | f86d9b587e3d415059ad5c4ccff1102b1092bb07 (diff) | |
| download | mullvadvpn-9cc59fb676e1d1fd2309bc7e12f1e3749af7f8b2.tar.xz mullvadvpn-9cc59fb676e1d1fd2309bc7e12f1e3749af7f8b2.zip | |
Initial project metadata and files
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | Cargo.toml | 6 | ||||
| -rw-r--r-- | rustfmt.toml | 3 | ||||
| -rw-r--r-- | src/lib.rs | 3 |
4 files changed, 14 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000..2c96eb1b65 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +target/ +Cargo.lock diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000000..a40bf04902 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "talpid_core" +version = "0.0.0" +authors = ["Linus Färnstrand <linus@mullvad.net>"] + +[dependencies] diff --git a/rustfmt.toml b/rustfmt.toml new file mode 100644 index 0000000000..8fdebf437d --- /dev/null +++ b/rustfmt.toml @@ -0,0 +1,3 @@ +reorder_imports = true +wrap_comments = true +write_mode = "Overwrite" diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000000..a24d7c1626 --- /dev/null +++ b/src/lib.rs @@ -0,0 +1,3 @@ +#![deny(missing_docs)] + +//! The core components of the talpidaemon VPN client. |
