forked from redox-os/ion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
55 lines (50 loc) · 1.17 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
authors = [
"Michael Aaron Murphy <[email protected]>",
"Hunter Goldstein <[email protected]>",
"Skyler Berg <[email protected]>",
"Jeremy Soller <[email protected]>",
"Michael Gattozzi <[email protected]>",
"Łukasz Niemier <[email protected]>",
]
build = "build.rs"
description = "The Ion Shell"
license-file = "LICENSE"
name = "ion-shell"
readme = "README.md"
repository = "https://github.com/redox-os/ion"
version = "1.0.0-alpha"
[[bin]]
name = "ion"
path = "src/main.rs"
[build-dependencies]
ansi_term = "0.10"
version_check = "0.1.3"
[dependencies]
bitflags = "1"
calculate = "0.5"
failure = "0.1.0"
failure_derive = "0.1.1"
fnv = "1.0"
glob = "0.2"
itoa = "0.3.4"
lazy_static = "1"
liner = "0.4"
permutate = "0.3"
rand = "0.4"
regex = "0.2"
smallstring = "0.1"
smallvec = "0.4"
unicode-segmentation = "1.2"
xdg = { git = "https://github.com/whitequark/rust-xdg" }
[lib]
path = "src/lib/lib.rs"
[profile.release]
lto = true
panic = "abort"
[target."cfg(all(unix, not(target_os = \"redox\")))".dependencies]
libc = "0.2"
libloading = "0.5"
users = "0.6"
[target."cfg(target_os = \"redox\")".dependencies]
redox_syscall = "0.1"