-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (28 loc) · 826 Bytes
/
Cargo.toml
File metadata and controls
33 lines (28 loc) · 826 Bytes
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
[package]
name = "oem_cp"
version = "2.1.2"
authors = ["Tatsunori Uchino <tats.u@live.jp>"]
edition = "2021"
categories = ["encoding"]
keywords = ["encoding", "charset"]
license = "MIT"
description ="Rust library that handles OEM code pages (e.g. CP{437,737,850}) for single byte character sets"
readme = "README.md"
repository = "https://github.com/tats-u/rust-oem-cp/"
include = [
"src",
"LICENSE",
]
[features]
default = ["alloc"]
alloc = []
[dependencies]
phf = { version = "0.11", default-features = false }
[dev-dependencies]
phf_codegen = "0.11"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
snapshot-testing = "0.1.8"
[target.'cfg(windows)'.dev-dependencies]
winapi = { version = "0.3.9", features = ["winnls", "stringapiset", "winerror","errhandlingapi","winbase"] }
itertools = "<2"