-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (46 loc) · 1.26 KB
/
Cargo.toml
File metadata and controls
50 lines (46 loc) · 1.26 KB
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
42
43
44
45
46
47
48
49
50
[package]
name = "basic-text"
version = "0.19.2"
description = "Basic Text strings and I/O streams"
authors = ["Dan Gohman <dev@sunfishcode.online>"]
license = "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT"
keywords = ["stream", "text"]
categories = ["os", "text-processing"]
repository = "https://github.com/sunfishcode/basic-text"
edition = "2021"
exclude = ["/."]
[dependencies]
arbitrary = { version = "1.0.0", optional = true }
basic-text-internals = { path = "internals", version = "^0.19.2" }
basic-text-literals = { path = "literals", version = "^0.19.2" }
duplex = "0.16.0"
layered-io = "0.23.0"
terminal-io = { version = "0.19.0", optional = true }
io-extras = "0.18.0"
utf8-io = { version = "0.19.0", features = ["layered-io"] }
[dev-dependencies]
anyhow = "1.0.37"
[workspace]
members = [
"internals",
"literals",
"restricted-text",
]
[lints.rust.unexpected_cfgs]
level = "warn"
check-cfg = [
'cfg(bench)',
'cfg(read_initializer)',
'cfg(can_vector)',
'cfg(clamp)',
'cfg(extend_one)',
'cfg(pattern)',
'cfg(seek_stream_len)',
'cfg(shrink_to)',
'cfg(toowned_clone_into)',
'cfg(try_reserve)',
'cfg(unix_socket_peek)',
'cfg(windows_by_handle)',
'cfg(write_all_vectored)',
'cfg(windows_file_type_ext)',
]