Bump all crate versions to 0.0.1

This commit is contained in:
Nick Mathewson 2021-10-29 11:05:51 -04:00
parent ad2b4e300a
commit e6e740646a
26 changed files with 123 additions and 123 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "arti-client"
version = "0.0.0"
version = "0.0.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"
@ -18,13 +18,13 @@ static = [ "tor-rtcompat/static", "tor-dirmgr/static" ]
experimental-api = []
[dependencies]
tor-circmgr = { path="../tor-circmgr", version="0.0.0" }
tor-chanmgr = { path="../tor-chanmgr", version="0.0.0" }
tor-config = { path="../tor-config", version="0.0.0" }
tor-dirmgr = { path="../tor-dirmgr", version="0.0.0" }
tor-persist = { path="../tor-persist", version="0.0.0" }
tor-proto = { path="../tor-proto", version="0.0.0" }
tor-rtcompat = { path="../tor-rtcompat", version="0.0.0" }
tor-circmgr = { path="../tor-circmgr", version = "0.0.1"}
tor-chanmgr = { path="../tor-chanmgr", version = "0.0.1"}
tor-config = { path="../tor-config", version = "0.0.1"}
tor-dirmgr = { path="../tor-dirmgr", version = "0.0.1"}
tor-persist = { path="../tor-persist", version = "0.0.1"}
tor-proto = { path="../tor-proto", version = "0.0.1"}
tor-rtcompat = { path="../tor-rtcompat", version = "0.0.1"}
derive_builder = "0.10.2"
futures = "0.3.13"
@ -33,7 +33,7 @@ serde = { version = "1.0.124", features = ["derive"] }
thiserror = "1.0.24"
[dev-dependencies]
tor-rtcompat = { path="../tor-rtcompat", version="0.0.0", features=["tokio"] }
tor-rtcompat = { path="../tor-rtcompat", version = "0.0.1", features=["tokio"] }
tokio-crate = { package = "tokio", version = "1.7.0", features = ["rt", "rt-multi-thread", "io-util", "net", "time", "macros" ] }
hyper = { version = "0.14.13", features = ["http1", "client", "runtime"] }
pin-project = { version = "1.0" }

View File

@ -1,6 +1,6 @@
[package]
name = "arti"
version = "0.0.0"
version = "0.0.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"
@ -18,10 +18,10 @@ static = [ "arti-client/static" ]
journald = [ "tracing-journald" ]
[dependencies]
arti-client = { package="arti-client", path = "../arti-client", 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" }
arti-client = { package="arti-client", path = "../arti-client", version = "0.0.1"}
tor-rtcompat = { path="../tor-rtcompat", version = "0.0.1", default-features=false }
tor-socksproto = { path="../tor-socksproto", version = "0.0.1"}
tor-config = { path="../tor-config", version = "0.0.1"}
anyhow = "1.0.38"
async-ctrlc = { version = "1.2.0", optional = true }

View File

@ -1,6 +1,6 @@
[package]
name = "caret"
version = "0.0.0"
version = "0.0.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"

View File

@ -1,6 +1,6 @@
[package]
name = "retry-error"
version = "0.0.0"
version = "0.0.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"

View File

@ -1,6 +1,6 @@
[package]
name = "tor-bytes"
version = "0.0.0"
version = "0.0.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"
@ -11,7 +11,7 @@ categories = [ "parsing", "encoding" ]
repository="https://gitlab.torproject.org/tpo/core/arti.git/"
[dependencies]
tor-llcrypto = { path="../tor-llcrypto", version="0.0.0" }
tor-llcrypto = { path="../tor-llcrypto", version = "0.0.1"}
arrayref = "0.3.6"
bytes = "1.0.1"

View File

@ -1,6 +1,6 @@
[package]
name = "tor-cell"
version = "0.0.0"
version = "0.0.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"
@ -11,11 +11,11 @@ categories = [ "parser-implementations", "network-programming" ]
repository="https://gitlab.torproject.org/tpo/core/arti.git/"
[dependencies]
caret = { path="../caret", version="0.0.0" }
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-linkspec = { path="../tor-linkspec", version="0.0.0" }
caret = { path="../caret", version = "0.0.1"}
tor-llcrypto = { path="../tor-llcrypto", version = "0.0.1"}
tor-bytes = { path="../tor-bytes", version = "0.0.1"}
tor-cert = { path="../tor-cert", version = "0.0.1"}
tor-linkspec = { path="../tor-linkspec", version = "0.0.1"}
arrayref = "0.3.6"
bitflags = "1.2.1"

View File

@ -1,6 +1,6 @@
[package]
name = "tor-cert"
version = "0.0.0"
version = "0.0.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"
@ -11,10 +11,10 @@ categories = [ "parser-implementations" ]
repository="https://gitlab.torproject.org/tpo/core/arti.git/"
[dependencies]
caret = { path="../caret", version="0.0.0" }
tor-llcrypto = { path="../tor-llcrypto", version="0.0.0" }
tor-bytes = { path="../tor-bytes", version="0.0.0" }
tor-checkable = { path="../tor-checkable", version="0.0.0" }
caret = { path="../caret", version = "0.0.1"}
tor-llcrypto = { path="../tor-llcrypto", version = "0.0.1"}
tor-bytes = { path="../tor-bytes", version = "0.0.1"}
tor-checkable = { path="../tor-checkable", version = "0.0.1"}
digest = "0.9.0"
signature = "1.3.0"

View File

@ -1,6 +1,6 @@
[package]
name = "tor-chanmgr"
version = "0.0.0"
version = "0.0.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"
@ -13,10 +13,10 @@ repository="https://gitlab.torproject.org/tpo/core/arti.git/"
[features]
[dependencies]
tor-rtcompat = { path="../tor-rtcompat", version="0.0.0" }
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" }
tor-rtcompat = { path="../tor-rtcompat", version = "0.0.1"}
tor-proto = { path="../tor-proto", version = "0.0.1"}
tor-linkspec = { path="../tor-linkspec", version = "0.0.1"}
tor-llcrypto = { path="../tor-llcrypto", version = "0.0.1"}
async-trait = "0.1.48"
futures = "0.3.13"
@ -26,5 +26,5 @@ thiserror = "1.0.24"
[dev-dependencies]
futures-await-test = "0.3.0"
hex-literal = "0.3.1"
tor-rtmock = { path="../tor-rtmock", version="0.0.0" }
tor-rtcompat = { path="../tor-rtcompat", version="0.0.0", features=["tokio"] }
tor-rtmock = { path="../tor-rtmock", version = "0.0.1"}
tor-rtcompat = { path="../tor-rtcompat", version = "0.0.1", features=["tokio"] }

View File

@ -1,6 +1,6 @@
[package]
name = "tor-checkable"
version = "0.0.0"
version = "0.0.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"
@ -11,7 +11,7 @@ categories = [ "cryptography", "rust-patterns" ]
repository="https://gitlab.torproject.org/tpo/core/arti.git/"
[dependencies]
tor-llcrypto = { path="../tor-llcrypto", version="0.0.0" }
tor-llcrypto = { path="../tor-llcrypto", version = "0.0.1"}
signature = "1.3.0"
thiserror = "1.0.24"

View File

@ -1,6 +1,6 @@
[package]
name = "tor-circmgr"
version = "0.0.0"
version = "0.0.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"
@ -14,15 +14,15 @@ repository="https://gitlab.torproject.org/tpo/core/arti.git/"
experimental-api = []
[dependencies]
tor-chanmgr = { path="../tor-chanmgr", version="0.0.0" }
tor-guardmgr = { path="../tor-guardmgr", version="0.0.0" }
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-persist = { path="../tor-persist", version="0.0.0" }
tor-rtcompat = { path="../tor-rtcompat", version="0.0.0" }
tor-chanmgr = { path="../tor-chanmgr", version = "0.0.1"}
tor-guardmgr = { path="../tor-guardmgr", version = "0.0.1"}
tor-netdir = { path="../tor-netdir", version = "0.0.1"}
tor-netdoc = { path="../tor-netdoc", version = "0.0.1"}
tor-proto = { path="../tor-proto", version = "0.0.1"}
retry-error = { path="../retry-error", version = "0.0.1"}
tor-linkspec = { path="../tor-linkspec", version = "0.0.1"}
tor-persist = { path="../tor-persist", version = "0.0.1"}
tor-rtcompat = { path="../tor-rtcompat", version = "0.0.1"}
async-trait = "0.1.48"
bounded-vec-deque = "0.1.1"
@ -41,7 +41,7 @@ weak-table = "0.3.0"
[dev-dependencies]
async_executors = { version = "0.4.2", default-features=false, features = [ "tokio_tp" ] }
futures-await-test = "0.3.0"
tor-rtmock = { path="../tor-rtmock", version="0.0.0" }
tor-llcrypto = { path="../tor-llcrypto", version="0.0.0" }
tor-netdir = { path="../tor-netdir", version="0.0.0", features=["testing"] }
tor-rtcompat = { path="../tor-rtcompat", version="0.0.0", features=["tokio"] }
tor-rtmock = { path="../tor-rtmock", version = "0.0.1"}
tor-llcrypto = { path="../tor-llcrypto", version = "0.0.1"}
tor-netdir = { path="../tor-netdir", version = "0.0.1", features=["testing"] }
tor-rtcompat = { path="../tor-rtcompat", version = "0.0.1", features=["tokio"] }

View File

@ -1,6 +1,6 @@
[package]
name = "tor-config"
version = "0.0.0"
version = "0.0.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"

View File

@ -1,6 +1,6 @@
[package]
name = "tor-consdiff"
version = "0.0.0"
version = "0.0.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"
@ -16,7 +16,7 @@ slow-diff-apply = []
[dependencies]
tor-llcrypto = { path="../tor-llcrypto", version="0.0.0" }
tor-llcrypto = { path="../tor-llcrypto", version = "0.0.1"}
digest = "0.9.0"
hex = "0.4.3"

View File

@ -1,6 +1,6 @@
[package]
name = "tor-dirclient"
version = "0.0.0"
version = "0.0.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"
@ -16,11 +16,11 @@ xz = ["async-compression/xz"]
zstd = ["async-compression/zstd"]
[dependencies]
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" }
tor-circmgr = { path="../tor-circmgr", version = "0.0.1"}
tor-llcrypto = { path="../tor-llcrypto", version = "0.0.1"}
tor-proto = { path="../tor-proto", version = "0.0.1"}
tor-netdoc = { path="../tor-netdoc", version = "0.0.1"}
tor-rtcompat = { path="../tor-rtcompat", version = "0.0.1"}
async-compression = { version = "0.3.7", features=["futures-io", "zlib"] }
base64 = "0.13.0"
@ -35,6 +35,6 @@ thiserror = "1.0.24"
[dev-dependencies]
futures-await-test = "0.3.0"
tor-rtmock = { path="../tor-rtmock", version="0.0.0" }
tor-rtcompat = { path="../tor-rtcompat", version="0.0.0", features=["tokio"] }
tor-rtmock = { path="../tor-rtmock", version = "0.0.1"}
tor-rtcompat = { path="../tor-rtcompat", version = "0.0.1", features=["tokio"] }

View File

@ -1,6 +1,6 @@
[package]
name = "tor-dirmgr"
version = "0.0.0"
version = "0.0.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"
@ -16,15 +16,15 @@ mmap = [ "memmap2" ]
static = [ "rusqlite/bundled" ]
[dependencies]
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" }
retry-error = { path="../retry-error", version = "0.0.1"}
tor-checkable = { path="../tor-checkable", version = "0.0.1"}
tor-circmgr = { path="../tor-circmgr", version = "0.0.1"}
tor-consdiff = { path="../tor-consdiff", version = "0.0.1"}
tor-dirclient = { path="../tor-dirclient", version = "0.0.1"}
tor-netdir = { path="../tor-netdir", version = "0.0.1"}
tor-netdoc = { path="../tor-netdoc", version = "0.0.1"}
tor-llcrypto = { path="../tor-llcrypto", version = "0.0.1"}
tor-rtcompat = { path="../tor-rtcompat", version = "0.0.1"}
async-trait = "0.1.48"
base64 = "0.13.0"
@ -49,4 +49,4 @@ humantime-serde = "1.0.1"
futures-await-test = "0.3.0"
hex-literal = "0.3.1"
tempfile = "3.2.0"
tor-rtcompat = { path="../tor-rtcompat", version="0.0.0", features=["tokio"] }
tor-rtcompat = { path="../tor-rtcompat", version = "0.0.1", features=["tokio"] }

View File

@ -1,6 +1,6 @@
[package]
name = "tor-guardmgr"
version = "0.0.0"
version = "0.0.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"
@ -11,12 +11,12 @@ categories = [ "network-programming", "cryptography" ]
repository="https://gitlab.torproject.org/tpo/core/arti.git/"
[dependencies]
tor-netdir = { path="../tor-netdir", version="0.0.0" }
tor-linkspec = { path="../tor-linkspec", version="0.0.0" }
tor-llcrypto = { path="../tor-llcrypto", version="0.0.0" }
tor-persist = { path="../tor-persist", version="0.0.0" }
tor-rtcompat = { path="../tor-rtcompat", version="0.0.0" }
tor-units = { path="../tor-units", version="0.0.0" }
tor-netdir = { path="../tor-netdir", version = "0.0.1"}
tor-linkspec = { path="../tor-linkspec", version = "0.0.1"}
tor-llcrypto = { path="../tor-llcrypto", version = "0.0.1"}
tor-persist = { path="../tor-persist", version = "0.0.1"}
tor-rtcompat = { path="../tor-rtcompat", version = "0.0.1"}
tor-units = { path="../tor-units", version = "0.0.1"}
derive_builder = "0.10.2"
futures = "0.3.17"
@ -30,7 +30,7 @@ thiserror = "1.0.24"
tracing = "0.1.26"
[dev-dependencies]
tor-netdir = { path="../tor-netdir", version="0.0.0", features=["testing"]}
tor-persist = { path="../tor-persist", version="0.0.0", features=["testing"]}
tor-rtcompat = { path="../tor-rtcompat", version="0.0.0", features=["tokio"]}
tor-rtmock = { path="../tor-rtmock", version="0.0.0" }
tor-netdir = { path="../tor-netdir", version = "0.0.1", features=["testing"]}
tor-persist = { path="../tor-persist", version = "0.0.1", features=["testing"]}
tor-rtcompat = { path="../tor-rtcompat", version = "0.0.1", features=["tokio"]}
tor-rtmock = { path="../tor-rtmock", version = "0.0.1"}

View File

@ -1,6 +1,6 @@
[package]
name = "tor-linkspec"
version = "0.0.0"
version = "0.0.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"
@ -11,9 +11,9 @@ categories = [ "network-programming" ]
repository="https://gitlab.torproject.org/tpo/core/arti.git/"
[dependencies]
tor-llcrypto = { path="../tor-llcrypto", version="0.0.0" }
tor-bytes = { path="../tor-bytes", version="0.0.0" }
tor-protover = { path="../tor-protover", version="0.0.0" }
tor-llcrypto = { path="../tor-llcrypto", version = "0.0.1"}
tor-bytes = { path="../tor-bytes", version = "0.0.1"}
tor-protover = { path="../tor-protover", version = "0.0.1"}
[dev-dependencies]
hex-literal = "0.3.1"

View File

@ -1,6 +1,6 @@
[package]
name = "tor-llcrypto"
version = "0.0.0"
version = "0.0.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"

View File

@ -1,6 +1,6 @@
[package]
name = "tor-netdir"
version = "0.0.0"
version = "0.0.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"
@ -16,12 +16,12 @@ experimental-api = []
testing = [ "hex", "hex-literal", "tor-netdoc/build_docs" ]
[dependencies]
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" }
tor-checkable = { path="../tor-checkable", version = "0.0.1"}
tor-netdoc = { path="../tor-netdoc", version = "0.0.1"}
tor-linkspec = { path="../tor-linkspec", version = "0.0.1"}
tor-llcrypto = { path="../tor-llcrypto", version = "0.0.1"}
tor-protover = { path="../tor-protover", version = "0.0.1"}
tor-units = { path="../tor-units", version = "0.0.1"}
derive_builder = "0.10.2"
derive_more = "0.99.0"
@ -36,4 +36,4 @@ tracing = "0.1.26"
[dev-dependencies]
hex = "0.4.3"
hex-literal = "0.3.1"
tor-netdoc = { path="../tor-netdoc", version="0.0.0", features=["build_docs"] }
tor-netdoc = { path="../tor-netdoc", version = "0.0.1", features=["build_docs"] }

View File

@ -1,6 +1,6 @@
[package]
name = "tor-netdoc"
version = "0.0.0"
version = "0.0.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"
@ -14,11 +14,11 @@ repository="https://gitlab.torproject.org/tpo/core/arti.git/"
build_docs = [ "rand" ]
[dependencies]
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" }
tor-llcrypto = { path="../tor-llcrypto", version = "0.0.1"}
tor-bytes = { path="../tor-bytes", version = "0.0.1"}
tor-cert = { path="../tor-cert", version = "0.0.1"}
tor-protover = { path="../tor-protover", version = "0.0.1"}
tor-checkable = { path="../tor-checkable", version = "0.0.1"}
base64 = "0.13.0"
bitflags = "1.2.1"

View File

@ -1,6 +1,6 @@
[package]
name = "tor-persist"
version = "0.0.0"
version = "0.0.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"

View File

@ -1,6 +1,6 @@
[package]
name = "tor-proto"
version = "0.0.0"
version = "0.0.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"
@ -17,13 +17,13 @@ ntor_v3 = []
tokio = [ "tokio-crate", "tokio-util" ]
[dependencies]
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-linkspec = { path="../tor-linkspec", version="0.0.0" }
tor-checkable = { path="../tor-checkable", version="0.0.0" }
tor-protover = { path="../tor-protover", version="0.0.0" }
tor-cell = { path="../tor-cell", version="0.0.0" }
tor-llcrypto = { path="../tor-llcrypto", version = "0.0.1"}
tor-bytes = { path="../tor-bytes", version = "0.0.1"}
tor-cert = { path="../tor-cert", version = "0.0.1"}
tor-linkspec = { path="../tor-linkspec", version = "0.0.1"}
tor-checkable = { path="../tor-checkable", version = "0.0.1"}
tor-protover = { path="../tor-protover", version = "0.0.1"}
tor-cell = { path="../tor-cell", version = "0.0.1"}
arrayref = "0.3.6"
bytes = "1.0.1"

View File

@ -1,6 +1,6 @@
[package]
name = "tor-protover"
version = "0.0.0"
version = "0.0.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"
@ -11,6 +11,6 @@ categories = [ "network-programming" ]
repository="https://gitlab.torproject.org/tpo/core/arti.git/"
[dependencies]
caret = { path="../caret", version="0.0.0" }
caret = { path="../caret", version = "0.0.1"}
thiserror = "1.0.24"

View File

@ -1,6 +1,6 @@
[package]
name = "tor-rtcompat"
version = "0.0.0"
version = "0.0.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"

View File

@ -1,6 +1,6 @@
[package]
name = "tor-rtmock"
version = "0.0.0"
version = "0.0.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"
@ -16,9 +16,9 @@ futures = "0.3.13"
pin-project = "1.0.5"
thiserror = "1.0.24"
tor-rtcompat = { version="0.0.0", path = "../tor-rtcompat" }
tor-rtcompat = { version = "0.0.1", path = "../tor-rtcompat" }
[dev-dependencies]
futures-await-test = "0.3.0"
rand = "0.8.3"
tor-rtcompat = { path="../tor-rtcompat", version="0.0.0", features=["tokio"] }
tor-rtcompat = { path="../tor-rtcompat", version = "0.0.1", features=["tokio"] }

View File

@ -1,6 +1,6 @@
[package]
name = "tor-socksproto"
version = "0.0.0"
version = "0.0.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"
@ -11,8 +11,8 @@ categories = [ "network-programming" ]
repository="https://gitlab.torproject.org/tpo/core/arti.git/"
[dependencies]
caret = { path="../caret", version="0.0.0" }
tor-bytes = { path="../tor-bytes", version="0.0.0" }
caret = { path="../caret", version = "0.0.1"}
tor-bytes = { path="../tor-bytes", version = "0.0.1"}
thiserror = "1.0.24"

View File

@ -1,6 +1,6 @@
[package]
name = "tor-units"
version = "0.0.0"
version = "0.0.1"
authors = ["Dennis Jackson <git@dennisjj.co.uk>"]
edition = "2018"
license = "MIT OR Apache-2.0"