forked from redox-os/ion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
75 lines (66 loc) · 2.04 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[package]
name = "ion-shell"
description = "The Ion Shell"
repository = "https://github.com/redox-os/ion"
version = "1.0.5"
license-file = "LICENSE"
readme = "README.md"
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"
[[bin]]
name = "ion"
path = "src/main.rs"
## Shared Dependencies
[dependencies]
# Provides XDG app directory support
app_dirs = "1.1.1"
# Provides methods for bitwise flag operations
bitflags = "0.9.1"
# Provides inline arithmetic expression and `calc` functionality
calculate = "0.1"
# A faster hashing algorithm for the hash maps in the shell.
fnv = "1.0"
# Performs globbing on words that are detected to be potentially globbable.
glob = "0.2"
# Provides a macro for lazily-evalulated statics
lazy_static = "0.2"
# Provides the line editor / prompt for the shell
liner = { git = "https://github.com/MovingtoMars/liner/" }
# Provides permutations of strings in brace expansions
permutate = "0.3"
# Enables strings to be stored inline on the stack, when possible.
smallstring = "0.1"
# Same as the above, but for vectors.
smallvec = "0.4"
# Provides grapheme-based string iterators.
unicode-segmentation = "1.2"
# Rusts regex crate
regex = "0.2"
## Redox Dependencies
[target.'cfg(target_os = "redox")'.dependencies]
# Provides access to Redox syscalls for signals/job control.
redox_syscall = "0.1"
## *nix Dependencies (Linux, Mac OS, BSDs)
[target.'cfg(all(unix, not(target_os = "redox")))'.dependencies]
# Required to access some *nix-specific syscalls for signals/job control.
libc = "0.2"
# A higher level abstraction of libc-acquired syscalls for signals/job control.
nix = "0.8"
# Obtains user directories
users = "0.5.1"
[build-dependencies]
ansi_term = "0.9"
peg = "0.5"
version_check = "0.1.3"
[profile.release]
# debug = true
# rustflags = [ "-C", "target-cpu=native"]
lto = true
panic = "abort"