Add dependency on paste crate

The list accessor macro is going to want this.
This commit is contained in:
Ian Jackson 2022-04-29 18:36:26 +01:00
parent ff624f6081
commit 8ad4735d58
3 changed files with 3 additions and 0 deletions

1
Cargo.lock generated
View File

@ -3337,6 +3337,7 @@ dependencies = [
"directories",
"dirs",
"once_cell",
"paste",
"rmp-serde",
"serde",
"serde_json",

View File

@ -22,6 +22,7 @@ tor-basic-utils = { path="../tor-basic-utils", version = "0.2.0" }
thiserror = "1"
derive_builder = { version = "0.11.2", git = "https://github.com/ijackson/rust-derive-builder", rev = "ba0c1a5311bd9f93ddf5f5b8ec2a5f6f03b22fbe" }
once_cell = "1"
paste = "1"
serde = { version = "1.0.103", features = ["derive"] }
shellexpand = { version = "2.1", package = "shellexpand-fork", optional = true }
tracing = "0.1.18"

View File

@ -53,6 +53,7 @@ mod path;
pub use err::{ConfigBuildError, ReconfigureError};
pub use mut_cfg::MutCfg;
pub use paste::paste;
pub use path::CfgPath;
pub use serde;