Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update note about project maintaince #340

Draft
wants to merge 4 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 46 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ members = [

# blocked by diesel error for now.
#resolver = "2"

4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
</p>

------
**NOTE**: The Synth project is no longer being actively maintained. New issues and pull requests will likely not be addressed. If you're interested in taking over as a maintainer of the project reach out to `[email protected]`.
**NOTE**: ~~The Synth project is no longer being actively maintained. New issues and pull requests will likely not be addressed. If you're interested in taking over as a maintainer of the project reach out to `[email protected]`.~~

The project now has new maintainers and a fresh start.

------

Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "nightly"
channel = "nightly-2022-08-01"
components = [ "rustfmt", "rust-src", "llvm-tools-preview"]
8 changes: 7 additions & 1 deletion synth/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ telemetry = ["posthog-rs", "uuid", "backtrace", "console"]

[build-dependencies]
git2 = "0.13.20"
#until https://github.com/rust-lang/git2-rs/issues/623 fixed
[dependencies.openssl]
version = "0.10.41"
features = [
"vendored"
]

[dev-dependencies]
lazy_static = "1.4.0"
Expand Down Expand Up @@ -76,7 +82,7 @@ sqlx = { version = "0.5.7", features = [ "postgres", "mysql", "runtime-async-std

beau_collector = "0.2.1"

reqwest = { version = "0.11", features = ["json", "blocking"] }
reqwest = { version = "0.11", features = ["json", "blocking","rustls-tls"] }

semver = "1.0.4"

Expand Down