-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
21 lines (18 loc) · 714 Bytes
/
Cargo.toml
File metadata and controls
21 lines (18 loc) · 714 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "wslpath"
version = "0.0.2"
edition = "2018"
authors = ["Pratik Chowdhury [email protected]"]
description = "Convert Windows to WSL Path and vice-versa"
readme = "README.md"
repository = "https://github.com/pratikpc/wsl-path-rust"
exclude = [".devcontainer"]
license = "MIT"
homepage = "https://github.com/pratikpc/wsl-path-rust#readme"
[lib]
name = "wslpath" # The name of the target.
path = "src/lib.rs" # The source file of the target.
crate-type = ["lib"] # The crate types to generate.
required-features = [] # Features required to build this target (N/A for lib).
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]