forked from starkat99/widestring-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
23 lines (20 loc) · 798 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
[package]
name = "widestring"
version = "0.4.0"
authors = ["Kathryn Long <[email protected]>"]
description = "A wide string FFI library for converting to and from wide strings, such as those often used in Windows API or other FFI libaries. Both UTF-16 and UTF-32 types are provided."
repository = "https://github.com/starkat99/widestring-rs.git"
readme = "README.md"
keywords = ["wide", "string", "win32", "utf-16", "utf-32"]
categories = ["text-processing", "encoding"]
license = "MIT/Apache-2.0"
[features]
default = ["std"]
std = ["alloc"]
alloc = []
[badges]
appveyor = { repository = "starkat99/widestring-rs" }
travis-ci = { repository = "starkat99/widestring-rs" }
maintenance = { status = "passively-maintained" }
[dev-dependencies]
winapi = { version = "0.3", features = ["winbase"] }