2020-10-25 09:21:03 +03:00
|
|
|
[package]
|
|
|
|
name = "env-bootstrap"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Wez Furlong <wez@wezfurlong.org>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2022-04-28 00:47:28 +03:00
|
|
|
backtrace = "0.3"
|
2021-05-03 06:50:01 +03:00
|
|
|
chrono = {version="0.4", features=["unstable-locales"]}
|
2020-10-25 09:21:03 +03:00
|
|
|
config = { path = "../config" }
|
2020-12-10 21:08:49 +03:00
|
|
|
dirs-next = "2.0"
|
2021-05-03 06:50:01 +03:00
|
|
|
lazy_static = "1.4"
|
2022-03-18 02:52:35 +03:00
|
|
|
libc = "0.2"
|
2020-12-23 23:14:01 +03:00
|
|
|
log = "0.4"
|
2022-04-07 18:22:46 +03:00
|
|
|
env_logger = "0.9"
|
2022-04-07 19:51:00 +03:00
|
|
|
termwiz = { path = "../termwiz" }
|
2022-05-19 08:49:53 +03:00
|
|
|
battery = { path = "../lua-api-crates/battery" }
|
2022-07-11 09:41:18 +03:00
|
|
|
color-funcs = { path = "../lua-api-crates/color-funcs" }
|
2022-05-19 08:49:53 +03:00
|
|
|
termwiz-funcs = { path = "../lua-api-crates/termwiz-funcs" }
|
|
|
|
logging = { path = "../lua-api-crates/logging" }
|
2022-06-17 17:46:25 +03:00
|
|
|
mux-lua = { path = "../lua-api-crates/mux" }
|
2022-07-16 18:49:58 +03:00
|
|
|
procinfo-funcs = { path = "../lua-api-crates/procinfo-funcs" }
|
2022-05-19 08:49:53 +03:00
|
|
|
filesystem = { path = "../lua-api-crates/filesystem" }
|
2022-07-10 19:30:54 +03:00
|
|
|
json = { path = "../lua-api-crates/json" }
|
2022-06-19 07:31:53 +03:00
|
|
|
share-data = { path = "../lua-api-crates/share-data" }
|
2022-05-19 08:49:53 +03:00
|
|
|
ssh-funcs = { path = "../lua-api-crates/ssh-funcs" }
|
|
|
|
spawn-funcs = { path = "../lua-api-crates/spawn-funcs" }
|
2022-07-17 21:38:02 +03:00
|
|
|
time-funcs = { path = "../lua-api-crates/time-funcs" }
|
2020-10-25 09:21:03 +03:00
|
|
|
|
2021-10-24 21:44:55 +03:00
|
|
|
[target."cfg(windows)".dependencies]
|
|
|
|
winapi = "0.3"
|
|
|
|
|
2020-10-25 09:21:03 +03:00
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
|
|
cocoa = "0.20"
|
|
|
|
objc = "0.2"
|
|
|
|
|