File: Cargo.toml.orig

package info (click to toggle)
rust-print-bytes 1.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 168 kB
  • sloc: makefile: 2
file content (29 lines) | stat: -rw-r--r-- 798 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
[package]
name = "print_bytes"
version = "1.2.0"
authors = ["dylni"]
edition = "2021"
rust-version = "1.63.0"
description = """
Print bytes as losslessly as possible
"""
readme = "README.md"
repository = "https://github.com/dylni/print_bytes"
license = "MIT OR Apache-2.0"
keywords = ["bytes", "osstr", "path", "print", "windows"]
categories = ["command-line-interface", "os", "wasm"]
exclude = [".*", "tests.rs", "/rustfmt.toml", "/src/bin", "/tests"]

[package.metadata.docs.rs]
all-features = true
rustc-args = ["--cfg", "print_bytes_docs_rs"]
rustdoc-args = ["--cfg", "print_bytes_docs_rs"]

[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.48", features = ["Win32_Foundation", "Win32_System_Console"] }

[dev-dependencies]
os_str_bytes = "6.3"

[features]
specialization = []