Skip to content
Open
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
1,343 changes: 1,005 additions & 338 deletions Cargo.lock

Large diffs are not rendered by default.

12 changes: 10 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[workspace]
members = [
"ooniprobe-services",
"ooniprobe-network",
"ooniprobe-experiments",
"ooniprobe-ffi",
"uniffi-bindgen"
]
Expand All @@ -16,15 +18,21 @@ ooniprobe-services = { version = "0.1.0", path = "./ooniprobe-services" }
ooniauth-core = { git = "https://github.com/ooni/userauth" }
rand = "0.8.5"
bincode = "1"
chrono = "0.4.40"
thiserror = "2.0.12"
serde = { version = "1.0.216", features = ["serde_derive"] }
serde_json = "1.0.133"
serde_derive = "1.0"
rustls = { version = "0.23.37", features = ["ring"] }
tokio = { version = "1.42.0", features = ["full"] }
tokio-rustls = "0.26.4"
webpki-roots = "1.0.6"
hickory-resolver = "0.25.2"
hickory-proto = "0.25.2"
url = "2.5.4"
bytes = "1.9.0"
http-body-util = "0.1.2"
http = "1.2.0"
http-body-util = "0.1.3"
http = "1.4.0"
pin-project = "1"
jni = "0.21.1"
hyper-util = { version = "0.1.10", features = ["http1", "http2", "tokio"] }
Expand Down
1 change: 1 addition & 0 deletions ooniprobe-core/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

23 changes: 9 additions & 14 deletions ooniprobe-experiments/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,22 +1,17 @@
[package]
name = "ooniprobe-experiments"
version = { workspace = true }
edition = { workspace = true }
version = "0.1.0"
edition = "2021"

[dependencies]

ooniprobe-services = { workspace = true }

boring = { workspace = true }
ooniprobe-network = { path = "../ooniprobe-network" }
chrono = {workspace = true}
bytes = { workspace = true }
http = { workspace = true }
http-body-util = { workspace = true }
hyper = { workspace = true }
hyper-util = { workspace = true }
tokio = { workspace = true }
tokio-boring = { workspace = true }
pin-project = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
quanta = { workspace = true }
url = { workspace = true }
tokio = {workspace = true}
tokio-rustls = {workspace = true}
http = {workspace = true}
http-body-util = {workspace = true}
thiserror = {workspace = true}
176 changes: 0 additions & 176 deletions ooniprobe-experiments/src/dataformats.rs

This file was deleted.

Loading
Loading