aboutsummaryrefslogtreecommitdiff
path: root/crates/paths/Cargo.toml
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-06-14 13:16:00 +0100
committerGitHub <[email protected]>2020-06-14 13:16:00 +0100
commit017331a53c1eeaa1253d2829165627bfa27dc124 (patch)
tree7531c71ea8bf3b38d28c6ec51be8141ad9384dc0 /crates/paths/Cargo.toml
parent246c66a7f7fd3f85d7d6e47a36f17bafb0ccb08a (diff)
parenta32cff333dd34b7db886317470f1301f0266b9e7 (diff)
Merge #4875
4875: Introduce paths crate r=matklad a=matklad It's a good idea to distinguish between absolute and relative paths at the type level, to avoid accidental dependency on the cwd, which really shouldn't matter for rust-analyzer service bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/paths/Cargo.toml')
-rw-r--r--crates/paths/Cargo.toml8
1 files changed, 8 insertions, 0 deletions
diff --git a/crates/paths/Cargo.toml b/crates/paths/Cargo.toml
new file mode 100644
index 000000000..646ee7fd5
--- /dev/null
+++ b/crates/paths/Cargo.toml
@@ -0,0 +1,8 @@
1[package]
2name = "paths"
3version = "0.1.0"
4authors = ["rust-analyzer developers"]
5edition = "2018"
6
7[lib]
8doctest = false