1#
2#  Copyright 2022 Google, Inc.
3#
4#  Licensed under the Apache License, Version 2.0 (the "License");
5#  you may not use this file except in compliance with the License.
6#  You may obtain a copy of the License at:
7#
8#  http://www.apache.org/licenses/LICENSE-2.0
9#
10#  Unless required by applicable law or agreed to in writing, software
11#  distributed under the License is distributed on an "AS IS" BASIS,
12#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13#  See the License for the specific language governing permissions and
14#  limitations under the License.
15[package]
16name = "bt_utils"
17version = "0.0.1"
18edition = "2021"
19
20[features]
21chromeos = ["featured"]
22
23[dependencies]
24bt_topshim = { path = "../../topshim" }
25
26cfg-if = "1.0.0"
27featured = { version = "0.1.0", optional = true }
28libc = "0.2"
29log = "0.4.14"
30nix = "0.23"
31num-derive = "0.3"
32num-traits = "0.2"
33uhid-virt = "0.0.6"
34tokio = { version = "1", features = ['rt'] }
35
36[lib]
37crate-type = ["rlib"]
38