diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2016-11-30 14:27:39 +0100 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2016-11-30 14:27:39 +0100 |
| commit | 805f2cecceb6d43c35ce6152007aaa2866389965 (patch) | |
| tree | 1924672bd51c3f5a5403f3d781edbe4f0ba33f59 | |
| parent | f86d9b587e3d415059ad5c4ccff1102b1092bb07 (diff) | |
| parent | 3ef1f48337b828d9530a9aa7bfc3bebbd8f893de (diff) | |
| download | mullvadvpn-805f2cecceb6d43c35ce6152007aaa2866389965.tar.xz mullvadvpn-805f2cecceb6d43c35ce6152007aaa2866389965.zip | |
Merge branch 'project-metadata'
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | Cargo.toml | 6 | ||||
| -rw-r--r-- | rustfmt.toml | 4 | ||||
| -rw-r--r-- | src/lib.rs | 3 |
4 files changed, 15 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..a1f5f912a5 --- /dev/null +++ b/rustfmt.toml @@ -0,0 +1,4 @@ +reorder_imports = true +wrap_comments = true +write_mode = "Overwrite" +ideal_width = 100 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. |
