-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: reduced required rustc version to 1.63 (from 1.66)
- Loading branch information
Richard Pospesel
committed
Feb 23, 2024
1 parent
456b460
commit ba6482e
Showing
14 changed files
with
160 additions
and
111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
[package] | ||
name = "build_cpp_bindings" | ||
version = "0.1.0" | ||
rust-version = "1.63" | ||
edition = "2021" | ||
|
||
[[bin]] | ||
name = "build_cpp_bindings" | ||
path = "./build_cpp_bindings.rs" | ||
|
||
[dependencies] | ||
handlebars = "4.5.0" | ||
serde = { version = "1.0", features = ["derive"] } | ||
serde_json = "1.0" | ||
regex = "1.10" | ||
handlebars = "^4.3.0" | ||
regex = ">= 1.9, <= 1.9.6" | ||
serde = { version = "^1.0", features = ["derive"] } | ||
serde_json = "^1.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
[package] | ||
name = "build_java_bindings" | ||
version = "0.1.0" | ||
rust-version = "1.63" | ||
edition = "2021" | ||
|
||
[[bin]] | ||
name = "build_java_bindings" | ||
path = "./build_java_bindings.rs" | ||
|
||
[dependencies] | ||
handlebars = "4.5.0" | ||
serde = { version = "1.0", features = ["derive"] } | ||
serde_json = "1.0" | ||
regex = "1.10" | ||
heck = "0.4.1" | ||
handlebars = "^4.3.0" | ||
heck = "^0.4" | ||
regex = ">= 1.9, <= 1.9.6" | ||
serde = { version = "^1.0", features = ["derive"] } | ||
serde_json = "^1.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
[package] | ||
name = "build_python_bindings" | ||
version = "0.1.0" | ||
rust-version = "1.63" | ||
edition = "2021" | ||
|
||
[[bin]] | ||
name = "build_python_bindings" | ||
path = "./build_python_bindings.rs" | ||
|
||
[dependencies] | ||
handlebars = "4.5.0" | ||
serde = { version = "1.0", features = ["derive"] } | ||
serde_json = "1.0" | ||
regex = "1.10" | ||
heck = "0.4.1" | ||
handlebars = "^4.3.0" | ||
heck = "^0.4" | ||
regex = ">= 1.9, <= 1.9.6" | ||
serde = { version = "^1.0", features = ["derive"] } | ||
serde_json = "^1.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,25 +2,27 @@ | |
name = "cgosling" | ||
build = "build.rs" | ||
authors = ["Richard Pospesel <[email protected]>"] | ||
version = "0.2.0" | ||
rust-version = "1.66" | ||
version = "0.2.1" | ||
rust-version = "1.63" | ||
edition = "2021" | ||
|
||
[build-dependencies] | ||
cbindgen = "0.20.0" | ||
regex = "1.10.2" | ||
regex = "<= 1.9.6" | ||
serde = "1.0.193" | ||
serde_json = "1.0" | ||
|
||
|
||
[dependencies] | ||
anyhow = "1.0" | ||
bson = "2.2.0" | ||
gosling = { version = "0.1.0", path = "../gosling" } | ||
paste = "1.0" | ||
static_assertions = "1.1.0" | ||
tor-interface = { version = "0.2.0", path = "../tor-interface" } | ||
which = "4.3.0" | ||
anyhow = "^1" | ||
backtrace = ">= 0.3, <= 0.3.67" | ||
bson = ">= 2.0, <= 2.4.0" | ||
gosling = { version = "^0.1.0", path = "../gosling" } | ||
home = ">= 0.5, <= 0.5.5" | ||
paste = "^1.0" | ||
static_assertions = "^1.1" | ||
tor-interface = { version = "^0.2.0", path = "../tor-interface" } | ||
which = ">= 4.4.2, <= 5.0.0" | ||
|
||
[lib] | ||
name = "cgosling" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,40 @@ | ||
[package] | ||
name = "gosling" | ||
authors = ["Richard Pospesel <[email protected]>"] | ||
version = "0.1.0" | ||
rust-version = "1.66" | ||
version = "0.1.1" | ||
rust-version = "1.63" | ||
edition = "2021" | ||
license = "BSD-3-Clause" | ||
description = "A library for developing fully anonymous, peer-to-peer, metadata-resistant applications using tor onion services" | ||
homepage = "https://blueprint-freespeech.github.io/gosling/index.xhtml" | ||
repository = "https://github.com/blueprint-freespeech/gosling" | ||
|
||
[dependencies] | ||
bson = "2.2.0" | ||
data-encoding = "2.3.2" | ||
data-encoding-macro = "0.1.12" | ||
bson = ">= 2.0, <= 2.4.0" | ||
data-encoding = "^2" | ||
data-encoding-macro = "^0.1" | ||
honk-rpc = { version = "0.1.0", path = "../honk-rpc" } | ||
num_enum = "0.5.6" | ||
paste = "1.0" | ||
rand = "0.8.5" | ||
rand_core = "0.6.3" | ||
regex = "1.5.5" | ||
signature = "1.5.0" | ||
socks = "0.3.4" | ||
static_assertions = "1.1.0" | ||
tor-interface = { version = "0.2.0", path = "../tor-interface" } | ||
tor-llcrypto = { version = "0.2.0", features = ["relay"] } | ||
url = "2.2.2" | ||
num_enum = "^0.6" | ||
paste = "^1.0" | ||
rand = "^0.8" | ||
rand_core = "^0.6" | ||
regex = ">= 1.9, <= 1.9.6" | ||
signature = "^1.5" | ||
socks = "^0.3" | ||
static_assertions = "^1.1" | ||
thiserror = "^1" | ||
toml_datetime = ">= 0.6, <= 0.6.1" | ||
tor-interface = { version = "^0.2.0", path = "../tor-interface" } | ||
tor-llcrypto = { version = ">= 0.3, <= 0.4.4", features = ["relay"] } | ||
url = "^2.3" | ||
winnow = ">=0.4, <= 0.4.1" | ||
zeroize = "^1" | ||
thiserror = "1.0" | ||
|
||
[dev-dependencies] | ||
anyhow = "1.0" | ||
serial_test = "0.9.0" | ||
which = "4.3.0" | ||
anyhow = "^1" | ||
dashmap = ">= 5, <= 5.4.0" | ||
serial_test = "0.9.*" | ||
which = ">= 4.4.2, <= 5.0.0" | ||
|
||
[features] | ||
offline-test = ["tor-interface/offline-test"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
[package] | ||
name = "honk-rpc" | ||
authors = ["Richard Pospesel <[email protected]>"] | ||
version = "0.1.0" | ||
rust-version = "1.66" | ||
version = "0.1.1" | ||
rust-version = "1.63" | ||
edition = "2021" | ||
license = "BSD-3-Clause" | ||
description = "A library implementing an asynchrynous, bi-directional, dynamic, and BSON-based remote procedure call system" | ||
repository = "https://github.com/blueprint-freespeech/gosling" | ||
|
||
[dependencies] | ||
bson = "2.2.0" | ||
thiserror = "1.0" | ||
bson = ">= 2.0, <= 2.4.0" | ||
thiserror = "^1" | ||
|
||
[dev-dependencies] | ||
anyhow = "1.0" | ||
data-encoding = "2.3.2" | ||
sha3 = "0.10.8" | ||
anyhow = "^1" | ||
data-encoding = "^2" | ||
sha3 = "^0.10" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,33 @@ | ||
[package] | ||
name = "tor-interface" | ||
authors = ["Richard Pospesel <[email protected]>"] | ||
version = "0.2.0" | ||
rust-version = "1.66" | ||
version = "0.2.1" | ||
rust-version = "1.63" | ||
edition = "2021" | ||
license = "BSD-3-Clause" | ||
description = "A library providing a Rust interface to interact with the legacy tor daemon" | ||
keywords = ["tor", "anonymity"] | ||
repository = "https://github.com/blueprint-freespeech/gosling" | ||
|
||
[dependencies] | ||
data-encoding = "2.3.2" | ||
data-encoding-macro = "0.1.12" | ||
rand = "0.8.5" | ||
rand_core = "0.6.3" | ||
regex = "1.5.5" | ||
sha1 = "0.10.6" | ||
sha3 = "0.10.8" | ||
signature = "1.5.0" | ||
socks = "0.3.4" | ||
tor-llcrypto = { version = "0.2.0", features = ["relay"] } | ||
thiserror = "1.0" | ||
data-encoding = "^2" | ||
data-encoding-macro = "^0.1" | ||
rand = "^0.8" | ||
rand_core = "^0.6" | ||
regex = ">= 1.9, <= 1.9.6" | ||
sha1 = "^0.10" | ||
sha3 = "^0.10" | ||
signature = "^1.5" | ||
socks = "^0.3" | ||
thiserror = "^1" | ||
time-macros = ">= 0.2, <= 0.2.8" | ||
tor-llcrypto = { version = ">= 0.3, <= 0.4.4", features = ["relay"] } | ||
|
||
[dev-dependencies] | ||
anyhow = "1.0" | ||
serial_test = "0.9.0" | ||
which = "4.3.0" | ||
anyhow = "^1" | ||
dashmap = ">= 5, <= 5.4.0" | ||
serial_test = "0.9.*" | ||
which = ">= 4.4.2, <= 5.0.0" | ||
|
||
[features] | ||
offline-test = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.