File: Cargo.toml.orig

package info (click to toggle)
rust-shellexpand 3.1.0-4
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 212 kB
  • sloc: sh: 11; makefile: 4
file content (30 lines) | stat: -rw-r--r-- 816 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "shellexpand"
version = "3.1.0"
edition = "2018"
authors = ["Vladimir Matveev <vmatveev@citrine.cc>", "Ian Jackson <iwj@torproject.org>"]
license = "MIT/Apache-2.0"
description = "Shell-like expansions in strings"
repository = "https://gitlab.com/ijackson/rust-shellexpand"
documentation = "http://docs.rs/shellexpand/"
readme = "README.md"
keywords = ["strings", "shell", "variables"]

[dependencies]
dirs = { version = ">=4, <6", optional = true }

bstr = { version = "1.0.0-pre.2", optional = true }
os_str_bytes = { version = ">=5, <7", optional = true }

[features]
default = ["base-0", "tilde"]
full = ["full-msrv-1-51"]
full-msrv-1-51 = ["full-msrv-1-31", "path"]
full-msrv-1-31 = ["base-0", "tilde"]

base-0 = []
path = ["bstr", "os_str_bytes" ]
tilde = ["dirs"]

[lib]
name = "shellexpand"