# Copyright 2024 The Fuchsia Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. [package] name = "fuchsia-zircon-types" version = "0.4.0-alpha.2" license = "BSD-2-Clause" authors = ["David Koloski "] description = "Types for low-level Rust bindings for the Zircon kernel" repository = "https://fuchsia.googlesource.com" edition = "2021" [dependencies] zerocopy = { version = "0.8.0-alpha.5", optional = true } # Dependencies only used when compiled as part of the standard library core = { version = "1.0.0", optional = true, package = "rustc-std-workspace-core" } compiler_builtins = { version = "0.1", optional = true } [features] default = [] rustc-dep-of-std = ["core", "compiler_builtins/rustc-dep-of-std"]