diff options
| -rw-r--r-- | arti/Cargo.toml | 10 | ||||
| -rw-r--r-- | tor-chanmgr/Cargo.toml | 10 | ||||
| -rw-r--r-- | tor-checkable/Cargo.toml | 2 | ||||
| -rw-r--r-- | tor-circmgr/Cargo.toml | 18 | ||||
| -rw-r--r-- | tor-client/Cargo.toml | 10 | ||||
| -rw-r--r-- | tor-consdiff/Cargo.toml | 2 | ||||
| -rw-r--r-- | tor-dirclient/Cargo.toml | 12 | ||||
| -rw-r--r-- | tor-dirmgr/Cargo.toml | 18 | ||||
| -rw-r--r-- | tor-netdir/Cargo.toml | 14 | ||||
| -rw-r--r-- | tor-netdoc/Cargo.toml | 10 | ||||
| -rw-r--r-- | tor-protover/Cargo.toml | 2 | ||||
| -rw-r--r-- | tor-rtmock/Cargo.toml | 2 |
12 files changed, 55 insertions, 55 deletions
diff --git a/arti/Cargo.toml b/arti/Cargo.toml index 03b1ef050..bef205f00 100644 --- a/arti/Cargo.toml +++ b/arti/Cargo.toml @@ -16,11 +16,11 @@ async-std = [ "tor-client/async-std", "tor-rtcompat/async-std" ] tokio = [ "tor-client/tokio", "tor-rtcompat/tokio" ] [dependencies] -tor-client = { path = "../tor-client", version = "*", default-features=false } -tor-dirmgr = { path="../tor-dirmgr", version="*" } -tor-rtcompat = { path="../tor-rtcompat", version= "*", default-features=false } -tor-socksproto = { path="../tor-socksproto", version= "*" } -tor-config = { path="../tor-config", version = "*" } +tor-client = { path = "../tor-client", version="0.0.0", default-features=false } +tor-dirmgr = { path="../tor-dirmgr", version="0.0.0" } +tor-rtcompat = { path="../tor-rtcompat", version="0.0.0", default-features=false } +tor-socksproto = { path="../tor-socksproto", version="0.0.0" } +tor-config = { path="../tor-config", version="0.0.0" } anyhow = "1.0.38" config = { version = "0.11.0", default-features = false } diff --git a/tor-chanmgr/Cargo.toml b/tor-chanmgr/Cargo.toml index 1bd9d5312..825467161 100644 --- a/tor-chanmgr/Cargo.toml +++ b/tor-chanmgr/Cargo.toml @@ -13,10 +13,10 @@ repository="https://gitlab.torproject.org/tpo/core/arti.git/" [features] [dependencies] -tor-rtcompat = { path="../tor-rtcompat", version= "*", default-features=false } -tor-proto = { path="../tor-proto", version= "*" } -tor-linkspec = { path="../tor-linkspec", version= "*" } -tor-llcrypto = { path="../tor-llcrypto", version= "*" } +tor-rtcompat = { path="../tor-rtcompat", version="0.0.0", default-features=false } +tor-proto = { path="../tor-proto", version="0.0.0" } +tor-linkspec = { path="../tor-linkspec", version="0.0.0" } +tor-llcrypto = { path="../tor-llcrypto", version="0.0.0" } async-trait = "0.1.48" futures = "0.3.13" @@ -26,4 +26,4 @@ thiserror = "1.0.24" [dev-dependencies] futures-await-test = "0.3.0" hex-literal = "0.3.1" -tor-rtmock = { path="../tor-rtmock", version= "*" } +tor-rtmock = { path="../tor-rtmock", version="0.0.0" } diff --git a/tor-checkable/Cargo.toml b/tor-checkable/Cargo.toml index 668dea63c..9c45f2cd7 100644 --- a/tor-checkable/Cargo.toml +++ b/tor-checkable/Cargo.toml @@ -11,7 +11,7 @@ categories = [ "cryptography", "rust-patterns" ] repository="https://gitlab.torproject.org/tpo/core/arti.git/" [dependencies] -tor-llcrypto = { path="../tor-llcrypto", version = "*" } +tor-llcrypto = { path="../tor-llcrypto", version="0.0.0" } signature = "1.3.0" thiserror = "1.0.24" diff --git a/tor-circmgr/Cargo.toml b/tor-circmgr/Cargo.toml index 775cfcc4d..f30cb9804 100644 --- a/tor-circmgr/Cargo.toml +++ b/tor-circmgr/Cargo.toml @@ -14,13 +14,13 @@ repository="https://gitlab.torproject.org/tpo/core/arti.git/" experimental-api = [] [dependencies] -tor-chanmgr = { path="../tor-chanmgr", version= "*", default-features=false } -tor-netdir = { path="../tor-netdir", version= "*" } -tor-netdoc = { path="../tor-netdoc", version= "*" } -tor-proto = { path="../tor-proto", version= "*" } -retry-error = { path="../retry-error", version= "*" } -tor-linkspec = { path="../tor-linkspec", version= "*" } -tor-rtcompat = { path="../tor-rtcompat", version= "*", default-features=false } +tor-chanmgr = { path="../tor-chanmgr", version="0.0.0", default-features=false } +tor-netdir = { path="../tor-netdir", version="0.0.0" } +tor-netdoc = { path="../tor-netdoc", version="0.0.0" } +tor-proto = { path="../tor-proto", version="0.0.0" } +retry-error = { path="../retry-error", version="0.0.0" } +tor-linkspec = { path="../tor-linkspec", version="0.0.0" } +tor-rtcompat = { path="../tor-rtcompat", version="0.0.0", default-features=false } async-trait = "0.1.48" futures = "0.3.13" @@ -33,5 +33,5 @@ weak-table = "0.3.0" [dev-dependencies] futures-await-test = "0.3.0" itertools = "0.10.1" -tor-rtmock = { path="../tor-rtmock", version="*" } -tor-netdir = { path="../tor-netdir", version="*", features=["testing"] } +tor-rtmock = { path="../tor-rtmock", version="0.0.0" } +tor-netdir = { path="../tor-netdir", version="0.0.0", features=["testing"] } diff --git a/tor-client/Cargo.toml b/tor-client/Cargo.toml index affc0becd..4a6336a91 100644 --- a/tor-client/Cargo.toml +++ b/tor-client/Cargo.toml @@ -17,11 +17,11 @@ tokio = [ "tor-rtcompat/tokio" ] experimental-api = [] [dependencies] -tor-circmgr = { path="../tor-circmgr", version= "*" } -tor-chanmgr = { path="../tor-chanmgr", version= "*" } -tor-dirmgr = { path="../tor-dirmgr", version="*" } -tor-proto = { path="../tor-proto", version= "*" } -tor-rtcompat = { path="../tor-rtcompat", version= "*", default-features=false } +tor-circmgr = { path="../tor-circmgr", version="0.0.0" } +tor-chanmgr = { path="../tor-chanmgr", version="0.0.0" } +tor-dirmgr = { path="../tor-dirmgr", version="0.0.0" } +tor-proto = { path="../tor-proto", version="0.0.0" } +tor-rtcompat = { path="../tor-rtcompat", version="0.0.0", default-features=false } anyhow = "1.0.38" futures = "0.3.13" diff --git a/tor-consdiff/Cargo.toml b/tor-consdiff/Cargo.toml index d66406d02..fe93b6f18 100644 --- a/tor-consdiff/Cargo.toml +++ b/tor-consdiff/Cargo.toml @@ -16,7 +16,7 @@ slow-diff-apply = [] [dependencies] -tor-llcrypto = { path="../tor-llcrypto", version= "*" } +tor-llcrypto = { path="../tor-llcrypto", version="0.0.0" } digest = "0.9.0" hex = "0.4.3" diff --git a/tor-dirclient/Cargo.toml b/tor-dirclient/Cargo.toml index 960637114..885f5b22c 100644 --- a/tor-dirclient/Cargo.toml +++ b/tor-dirclient/Cargo.toml @@ -16,11 +16,11 @@ xz = ["async-compression/xz"] zstd = ["async-compression/zstd"] [dependencies] -tor-circmgr = { path="../tor-circmgr", version= "*" } -tor-llcrypto = { path="../tor-llcrypto", version= "*" } -tor-proto = { path="../tor-proto", version= "*" } -tor-netdoc = { path="../tor-netdoc", version= "*" } -tor-rtcompat = { path="../tor-rtcompat", version= "*", default-features=false } +tor-circmgr = { path="../tor-circmgr", version="0.0.0" } +tor-llcrypto = { path="../tor-llcrypto", version="0.0.0" } +tor-proto = { path="../tor-proto", version="0.0.0" } +tor-netdoc = { path="../tor-netdoc", version="0.0.0" } +tor-rtcompat = { path="../tor-rtcompat", version="0.0.0", default-features=false } async-compression = { version = "0.3.7", features=["futures-io", "zlib"] } anyhow = "1.0.38" @@ -36,4 +36,4 @@ thiserror = "1.0.24" [dev-dependencies] futures-await-test = "0.3.0" -tor-rtmock = { path="../tor-rtmock", version= "*" } +tor-rtmock = { path="../tor-rtmock", version="0.0.0" } diff --git a/tor-dirmgr/Cargo.toml b/tor-dirmgr/Cargo.toml index 7b32aaa68..d7849352e 100644 --- a/tor-dirmgr/Cargo.toml +++ b/tor-dirmgr/Cargo.toml @@ -15,15 +15,15 @@ default = [ "mmap" ] mmap = [ "memmap" ] [dependencies] -retry-error = { path="../retry-error", version= "*" } -tor-checkable = { path="../tor-checkable", version= "*" } -tor-circmgr = { path="../tor-circmgr", version= "*" } -tor-consdiff = { path="../tor-consdiff", version= "*" } -tor-dirclient = { path="../tor-dirclient", version= "*" } -tor-netdir = { path="../tor-netdir", version= "*" } -tor-netdoc = { path="../tor-netdoc", version= "*" } -tor-llcrypto = { path="../tor-llcrypto", version= "*" } -tor-rtcompat = { path="../tor-rtcompat", version= "*", default-features=false } +retry-error = { path="../retry-error", version="0.0.0" } +tor-checkable = { path="../tor-checkable", version="0.0.0" } +tor-circmgr = { path="../tor-circmgr", version="0.0.0" } +tor-consdiff = { path="../tor-consdiff", version="0.0.0" } +tor-dirclient = { path="../tor-dirclient", version="0.0.0" } +tor-netdir = { path="../tor-netdir", version="0.0.0" } +tor-netdoc = { path="../tor-netdoc", version="0.0.0" } +tor-llcrypto = { path="../tor-llcrypto", version="0.0.0" } +tor-rtcompat = { path="../tor-rtcompat", version="0.0.0", default-features=false } anyhow = "1.0.38" async-trait = "0.1.48" diff --git a/tor-netdir/Cargo.toml b/tor-netdir/Cargo.toml index adca260bc..efa27d653 100644 --- a/tor-netdir/Cargo.toml +++ b/tor-netdir/Cargo.toml @@ -16,12 +16,12 @@ experimental-api = [] testing = [ "hex", "hex-literal", "tor-netdoc/build_docs" ] [dependencies] -tor-checkable = { path="../tor-checkable", version= "*" } -tor-netdoc = { path="../tor-netdoc", version= "*" } -tor-linkspec = { path="../tor-linkspec", version= "*" } -tor-llcrypto = { path="../tor-llcrypto", version= "*" } -tor-protover = { path="../tor-protover", version= "*" } -tor-units = { path="../tor-units", version= "*" } +tor-checkable = { path="../tor-checkable", version="0.0.0" } +tor-netdoc = { path="../tor-netdoc", version="0.0.0" } +tor-linkspec = { path="../tor-linkspec", version="0.0.0" } +tor-llcrypto = { path="../tor-llcrypto", version="0.0.0" } +tor-protover = { path="../tor-protover", version="0.0.0" } +tor-units = { path="../tor-units", version="0.0.0" } log = "0.4.14" rand = "0.8.3" @@ -34,4 +34,4 @@ hex-literal = { version= "0.3.1", optional = true } [dev-dependencies] hex = "0.4.3" hex-literal = "0.3.1" -tor-netdoc = { path="../tor-netdoc", version= "*", features=["build_docs"] } +tor-netdoc = { path="../tor-netdoc", version="0.0.0", features=["build_docs"] } diff --git a/tor-netdoc/Cargo.toml b/tor-netdoc/Cargo.toml index 9b5a1b2ca..c98625129 100644 --- a/tor-netdoc/Cargo.toml +++ b/tor-netdoc/Cargo.toml @@ -14,11 +14,11 @@ repository="https://gitlab.torproject.org/tpo/core/arti.git/" build_docs = [ "rand" ] [dependencies] -tor-llcrypto = { path="../tor-llcrypto", version="*" } -tor-bytes = { path="../tor-bytes", version="*" } -tor-cert = { path="../tor-cert", version="*" } -tor-protover = { path="../tor-protover", version= "*" } -tor-checkable = { path="../tor-checkable", version= "*" } +tor-llcrypto = { path="../tor-llcrypto", version="0.0.0" } +tor-bytes = { path="../tor-bytes", version="0.0.0" } +tor-cert = { path="../tor-cert", version="0.0.0" } +tor-protover = { path="../tor-protover", version="0.0.0" } +tor-checkable = { path="../tor-checkable", version="0.0.0" } base64 = "0.13.0" bitflags = "1.2.1" diff --git a/tor-protover/Cargo.toml b/tor-protover/Cargo.toml index 3d10237f8..120bfcea5 100644 --- a/tor-protover/Cargo.toml +++ b/tor-protover/Cargo.toml @@ -11,6 +11,6 @@ categories = [ "network-programming" ] repository="https://gitlab.torproject.org/tpo/core/arti.git/" [dependencies] -caret = { path="../caret", version="*" } +caret = { path="../caret", version="0.0.0" } thiserror = "1.0.24" diff --git a/tor-rtmock/Cargo.toml b/tor-rtmock/Cargo.toml index 1730a2d73..a8adb9a4b 100644 --- a/tor-rtmock/Cargo.toml +++ b/tor-rtmock/Cargo.toml @@ -15,7 +15,7 @@ async-trait = "0.1.48" futures = "0.3.13" thiserror = "1.0.24" -tor-rtcompat = { path = "../tor-rtcompat" } +tor-rtcompat = { version="0.0.0", path = "../tor-rtcompat" } [dev-dependencies] futures-await-test = "0.3.0" |
