diff options
| -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. |
