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]
|
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"
|
|
|
|
pretty_env_logger = "0.4"
|
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"
|
|
|
|
|