blob: 35eee2bb438ca09d2ce5dbee9b3b25b4b228f184 [file] [log] [blame] [edit]
# Copyright 2022 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 = "sub-crate-with-feature"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
sub-crate-for-feature = { path = "../sub-crate-for-feature", optional = true }
[features]
featurefoo = ["sub-crate-for-feature"]