2020-08-03 03:09:41 +00:00
|
|
|
[package]
|
|
|
|
name = "base"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["The Chromium OS Authors"]
|
2022-03-08 01:16:09 +00:00
|
|
|
edition = "2021"
|
2020-08-03 03:09:41 +00:00
|
|
|
|
|
|
|
[features]
|
2022-03-21 18:31:38 +00:00
|
|
|
chromeos = []
|
2020-08-03 03:09:41 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-03-16 19:16:04 +00:00
|
|
|
audio_streams = { path = "../common/audio_streams" }
|
2022-04-13 23:35:10 +00:00
|
|
|
base_poll_token_derive = { path = "base_poll_token_derive" }
|
2022-03-16 19:16:04 +00:00
|
|
|
data_model = { path = "../common/data_model" }
|
2022-04-13 23:35:10 +00:00
|
|
|
|
|
|
|
cfg-if = "*"
|
|
|
|
chrono = "*"
|
2020-10-09 08:20:52 +00:00
|
|
|
libc = "*"
|
2022-04-13 23:35:10 +00:00
|
|
|
log = "0.4"
|
2021-08-18 21:18:53 +00:00
|
|
|
remain = "0.2"
|
2021-03-03 17:24:50 +00:00
|
|
|
serde = { version = "1", features = [ "derive" ] }
|
|
|
|
serde_json = "*"
|
2021-02-10 08:50:57 +00:00
|
|
|
smallvec = "1.6.1"
|
2022-03-16 19:16:04 +00:00
|
|
|
sync = { path = "../common/sync" }
|
2021-03-01 19:18:42 +00:00
|
|
|
thiserror = "1.0.20"
|
2022-03-16 19:04:57 +00:00
|
|
|
tempfile = "3"
|
2022-03-21 18:31:38 +00:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
2022-03-24 17:14:32 +00:00
|
|
|
lazy_static = "*"
|
2022-04-08 20:27:23 +00:00
|
|
|
rand = "*"
|
2022-03-21 18:31:38 +00:00
|
|
|
winapi = "*"
|
2022-03-21 21:44:36 +00:00
|
|
|
win_util = { path = "../win_util"}
|
2022-03-21 18:31:38 +00:00
|
|
|
|
2022-04-13 23:35:10 +00:00
|
|
|
[target.'cfg(windows)'.dev-dependencies]
|
|
|
|
regex = "*"
|