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 16[package] 17name = "bluetooth_core" 18version = "0.0.1" 19edition = "2021" 20 21[dependencies] 22bt_common = { path = "../gd/rust/common", default-features = false } 23 24# External dependencies 25# Note: source-of-truth is Android.bp, these are mirrored solely for IDE convenience 26anyhow = "1.0" 27bitflags = "2.5.0" 28log = "*" 29cxx = "*" 30android_logger = "*" 31jni = "*" 32paste = "*" 33async-trait = "*" 34pdl-runtime = "0.3.0" 35tokio-test = "0.4.2" 36tokio = { version = "1.23.0", features = ["macros"] } 37scopeguard = "1.1.0" 38 39[build-dependencies] 40pdl-compiler = "0.3.0" 41 42[lib] 43crate-type = ["rlib"] 44 45[workspace] 46