Skip to content
This repository was archived by the owner on Nov 1, 2023. It is now read-only.

Commit 7bd4ec1

Browse files
authored
Merge branch 'main' into kanan/comments-fix
2 parents d8c61d9 + 14ab36e commit 7bd4ec1

File tree

10 files changed

+26
-11
lines changed

10 files changed

+26
-11
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# <img src="docs/onefuzz_text.svg" height="120" alt="OneFuzz" />
22

3+
# IMPORTANT NOTICE
4+
5+
**_Since September 2020 when OneFuzz was first open sourced, we’ve been on a journey to create a best-in-class orchestrator for running fuzzers, driving security and quality into our products._**
6+
7+
8+
**_Initially launched by a small group in MSR, OneFuzz has now become a significant internal platform within Microsoft. As such, we are regretfully archiving the project to focus our attention on becoming a more deeply integrated service within the company. Unfortunately, we aren’t a large enough team to live in both the open-source world and the internal Microsoft world with its own unique set of requirements._**
9+
10+
**_Our current plan is to archive the project in the next few months. That means we’ll still be making updates for a little while. Of course, even after it’s archived, you’ll still be able to fork it and make the changes you need. Once we’ve decided on a specific date for archiving, we’ll update this readme._**
11+
12+
**_Thanks for taking the journey with us._**
13+
14+
**_The OneFuzz team._**
15+
16+
---
17+
318
[![Onefuzz build status](https://github.com/microsoft/onefuzz/workflows/Build/badge.svg?branch=main)](https://github.com/microsoft/onefuzz/actions/workflows/ci.yml?query=branch%3Amain)
419

520
## A self-hosted Fuzzing-As-A-Service platform

src/agent/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/agent/onefuzz-agent/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ reqwest = { version = "0.11", features = [
2222
serde = { version = "1.0", features = ["derive"] }
2323
serde_json = "1.0"
2424
storage-queue = { path = "../storage-queue" }
25-
tokio = { version = "1.29", features = ["full"] }
25+
tokio = { version = "1.32", features = ["full"] }
2626
url = { version = "2.4", features = ["serde"] }
2727
uuid = { version = "1.4", features = ["serde", "v4"] }
2828
clap = { version = "4", features = ["derive", "cargo"] }

src/agent/onefuzz-task/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ stacktrace-parser = { path = "../stacktrace-parser" }
4848
storage-queue = { path = "../storage-queue" }
4949
tempfile = "3.7.0"
5050
thiserror = "1.0"
51-
tokio = { version = "1.29", features = ["full"] }
51+
tokio = { version = "1.32", features = ["full"] }
5252
tokio-util = { version = "0.7", features = ["full"] }
5353
tokio-stream = "0.1"
5454
tui = { package = "ratatui", version = "0.22.0", default-features = false, features = [

src/agent/onefuzz-telemetry/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ chrono = { version = "0.4", default-features = false, features = [
1515
lazy_static = "1.4"
1616
log = "0.4"
1717
serde = { version = "1.0", features = ["derive"] }
18-
tokio = { version = "1.29", features = ["full"] }
18+
tokio = { version = "1.32", features = ["full"] }
1919
uuid = { version = "1.4", features = ["serde", "v4"] }

src/agent/onefuzz/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ serde = "1.0"
3131
serde_json = "1.0"
3232
rand = "0.8"
3333
serde_derive = "1.0"
34-
tokio = { version = "1.29", features = ["full"] }
34+
tokio = { version = "1.32", features = ["full"] }
3535
tokio-stream = { version = "0.1", features = ["fs", "time", "tokio-util"] }
3636
tokio-util = { version = "0.7", features = ["full"] }
3737
uuid = { version = "1.4", features = ["serde", "v4"] }

src/agent/reqwest-retry/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ reqwest = { version = "0.11", features = [
1919
thiserror = "1.0"
2020

2121
[dev-dependencies]
22-
tokio = { version = "1.29", features = ["macros"] }
22+
tokio = { version = "1.32", features = ["macros"] }
2323
wiremock = "0.5"

src/agent/storage-queue/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ serde = { version = "1.0", features = ["derive"] }
2626
serde_derive = "1.0"
2727
serde_json = "1.0"
2828
bincode = "1.3"
29-
tokio = { version = "1.29", features = ["full"] }
29+
tokio = { version = "1.32", features = ["full"] }
3030
queue-file = "1.4"
3131
uuid = { version = "1.4", features = ["serde", "v4"] }

src/proxy-manager/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/proxy-manager/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ serde = { version = "1.0", features = ["derive"] }
2020
serde_json = "1.0"
2121
storage-queue = { path = "../agent/storage-queue" }
2222
thiserror = "1.0"
23-
tokio = { version = "1.29", features = [
23+
tokio = { version = "1.32", features = [
2424
"macros",
2525
"rt-multi-thread",
2626
"fs",

0 commit comments

Comments
 (0)