-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (27 loc) · 1.09 KB
/
Cargo.toml
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
31
32
[package]
name = "ruby-file-expand-path"
version = "0.1.0" # remember to set `html_root_url` in `src/lib.rs`.
authors = ["Ryan Lopopolo <[email protected]>"]
license = "MIT"
edition = "2018"
readme = "README.md"
repository = "https://github.com/artichoke/ruby-file-expand-path"
documentation = "https://docs.rs/ruby-file-expand-path"
homepage = "https://github.com/artichoke/ruby-file-expand-path"
description = "Path normalization routines ported from MRI Ruby 3.0.2"
keywords = ["normalize", "absolute", "canonicalize", "windows", "path"]
categories = ["os", "filesystem"]
include = ["src/**/*", "tests/**/*", "LICENSE", "README.md"]
[features]
[dependencies]
# `no_std` mode was fixed in https://github.com/BurntSushi/bstr/commit/83e8f27e
bstr = { version = "1.0.1", default-features = false }
[dev-dependencies]
# Check that crate versions are properly updated in documentation and code when
# bumping the version.
[dev-dependencies.version-sync]
version = "0.9.3"
default-features = false
features = ["markdown_deps_updated", "html_root_url_updated"]
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]