-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (36 loc) · 1.29 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
33
34
35
36
37
38
39
40
41
[package]
name = "strftime-ruby"
# remember to set `html_root_url` in `src/lib.rs`.
version = "1.0.1"
authors = ["Ryan Lopopolo <[email protected]>", "x-hgg-x"]
license = "MIT"
edition = "2021"
rust-version = "1.58.0"
readme = "README.md"
repository = "https://github.com/artichoke/strftime-ruby"
documentation = "https://docs.rs/strftime-ruby"
homepage = "https://github.com/artichoke/strftime-ruby"
description = "Ruby `Time#strftime` parser and formatter"
keywords = ["ruby", "strftime", "time"]
categories = ["date-and-time", "no-std", "no-std::no-alloc", "parser-implementations", "value-formatting"]
include = ["src/**/*", "tests/**/*", "LICENSE", "README.md"]
[lib]
name = "strftime"
[features]
# All features are enabled by default.
default = ["std"]
std = ["alloc"]
alloc = []
[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]
# This sets the default target to `x86_64-unknown-linux-gnu` and only builds
# that target. `strftime-ruby` has the same API and code on all targets.
default-target = "x86_64-unknown-linux-gnu"
targets = []
rustdoc-args = ["--cfg", "docsrs"]