-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
34 lines (31 loc) · 919 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
[package]
name = "pwsh-host"
version = "0.3.0"
edition = "2018"
license = "MIT/Apache-2.0"
homepage = "https://github.com/awakecoding/pwsh-host-rs"
repository = "https://github.com/awakecoding/pwsh-host-rs"
authors = ["Marc-André Moreau <[email protected]>"]
keywords = ["dotnet", "pwsh", "host", "powershell"]
description = "Rust PowerShell Hosting Library"
[dependencies]
cfg-if = "0.1"
libc = "0.2"
thiserror = "1.0"
dlopen = "0.1"
dlopen_derive = "0.1"
num_enum = "0.5"
quick-error = "2.0"
quick-xml = "0.26"
decimal = { version = "2.1", default-features = false }
which = { version = "3.0", default-features = false, features = [] }
time = { version = "0.3", features = ["formatting", "parsing", "macros"] }
iso8601-duration = "0.1"
base64 = "0.13"
uuid = "1.2"
url = "2.3"
[target.'cfg(windows)'.dependencies]
widestring = "0.4"
u16cstr = "0.2"
[target.'cfg(not(windows))'.dependencies]
cstr = "0.2"