-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
28 lines (25 loc) · 869 Bytes
/
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
[package]
name = "nt-string"
version = "0.1.1"
authors = ["Colin Finck <[email protected]>"]
description = "Idiomatic Rust implementations for various Windows string types"
homepage = "https://github.com/ColinFinck/nt-string"
repository = "https://github.com/ColinFinck/nt-string"
documentation = "https://docs.rs/nt-string"
readme = "README.md"
edition = "2021"
rust-version = "1.58"
license = "MIT OR Apache-2.0"
keywords = ["wide", "string", "nt", "utf-16", "windows"]
categories = ["development-tools::ffi", "encoding", "no-std", "os::windows-apis"]
[dependencies]
displaydoc = { version = "0.2.3", default-features = false }
widestring = { version = "1.0.2", default-features = false }
[features]
default = ["std"]
alloc = ["widestring/alloc"]
allocator_api = []
std = ["alloc"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]