tor-error: Add as a ddpendency to many crates

Doing this here makes it easier when I rebase/reorder things
This commit is contained in:
Ian Jackson 2022-02-03 19:06:59 +00:00
parent 89b0c108d7
commit 6e1dc612cc
6 changed files with 10 additions and 0 deletions

5
Cargo.lock generated
View File

@ -136,6 +136,7 @@ dependencies = [
"tor-circmgr",
"tor-config",
"tor-dirmgr",
"tor-error",
"tor-persist",
"tor-proto",
"tor-rtcompat",
@ -2931,6 +2932,7 @@ dependencies = [
"hex-literal",
"postage",
"thiserror",
"tor-error",
"tor-linkspec",
"tor-llcrypto",
"tor-proto",
@ -2967,6 +2969,7 @@ dependencies = [
"thiserror",
"tor-chanmgr",
"tor-config",
"tor-error",
"tor-guardmgr",
"tor-linkspec",
"tor-llcrypto",
@ -3061,6 +3064,7 @@ dependencies = [
"tor-config",
"tor-consdiff",
"tor-dirclient",
"tor-error",
"tor-llcrypto",
"tor-netdir",
"tor-netdoc",
@ -3215,6 +3219,7 @@ dependencies = [
"serde_json",
"tempfile",
"thiserror",
"tor-error",
]
[[package]]

View File

@ -29,6 +29,7 @@ tor-circmgr = { path="../tor-circmgr", version = "0.0.4"}
tor-config = { path="../tor-config", version = "0.0.4"}
tor-chanmgr = { path="../tor-chanmgr", version = "0.0.4"}
tor-dirmgr = { path="../tor-dirmgr", version = "0.0.4"}
tor-error = { path="../tor-error", version = "0.0.1" }
tor-persist = { path="../tor-persist", version = "0.0.3"}
tor-proto = { path="../tor-proto", version = "0.0.4"}
tor-rtcompat = { path="../tor-rtcompat", version = "0.0.4"}

View File

@ -13,6 +13,7 @@ repository="https://gitlab.torproject.org/tpo/core/arti.git/"
[features]
[dependencies]
tor-error = { path="../tor-error", version = "0.0.1"}
tor-rtcompat = { path="../tor-rtcompat", version = "0.0.4"}
tor-proto = { path="../tor-proto", version = "0.0.4"}
tor-linkspec = { path="../tor-linkspec", version = "0.0.3"}

View File

@ -20,6 +20,7 @@ experimental-api = []
[dependencies]
tor-chanmgr = { path="../tor-chanmgr", version = "0.0.4"}
tor-config = { path="../tor-config", version = "0.0.4"}
tor-error = { path="../tor-error", version = "0.0.1"}
tor-guardmgr = { path="../tor-guardmgr", version = "0.0.5"}
tor-netdir = { path="../tor-netdir", version = "0.0.4"}
tor-netdoc = { path="../tor-netdoc", version = "0.0.4"}

View File

@ -24,6 +24,7 @@ tor-circmgr = { path = "../tor-circmgr", version = "0.0.4"}
tor-config = { path = "../tor-config", version = "0.0.4"}
tor-consdiff = { path = "../tor-consdiff", version = "0.0.3"}
tor-dirclient = { path = "../tor-dirclient", version = "0.0.4"}
tor-error = { path="../tor-error", version = "0.0.1"}
tor-netdir = { path = "../tor-netdir", version = "0.0.4"}
tor-netdoc = { path = "../tor-netdoc", version = "0.0.4"}
tor-llcrypto = { path = "../tor-llcrypto", version = "0.0.3"}

View File

@ -20,6 +20,7 @@ serde = { version = "1.0.103", features = ["derive"] }
serde_json = "1.0.50"
sanitize-filename = "0.3.0"
thiserror = "1"
tor-error = { path="../tor-error", version = "0.0.1" }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
fslock = { version = "0.2.0" }