-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
42 lines (39 loc) · 961 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "wincs"
version = "0.1.0"
edition = "2021"
[dependencies]
widestring = "1.0.2"
memoffset = "0.6.4"
windows = { version = "0.33.0", features = [
"alloc",
"Win32_Foundation",
"Win32_Storage_CloudFilters",
"Win32_System_SystemServices",
"Win32_System_CorrelationVector",
"Win32_Storage_FileSystem",
"Win32_System_IO",
"Storage_Provider",
"Win32_System_Memory",
"Storage",
"Foundation",
"Foundation_Collections",
"Win32_Security_Authorization",
"Win32_UI_Shell",
"Win32_System_Com",
"Win32_UI_Shell_PropertiesSystem",
"Win32_System_Com_StructuredStorage",
"Win32_Storage_EnhancedStorage",
"Win32_System_Ole",
"Win32_System_Search",
"Storage_Streams",
"Win32_System_Ioctl",
"Win32_Security",
] }
globset = { version = "0.4.9", optional = true }
[features]
# Enable globs in the `info::FetchPlaceholders` struct.
globs = ["globset"]
# TODO: temporarily ignored
[workspace]
members = ["examples/sftp"]