Skip to content

Commit

Permalink
Update cbindgen
Browse files Browse the repository at this point in the history
  • Loading branch information
Serock3 committed Feb 12, 2025
1 parent 74d800f commit 99b9393
Show file tree
Hide file tree
Showing 4 changed files with 74 additions and 19 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

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

24 changes: 18 additions & 6 deletions mullvad-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,27 @@ thiserror = { workspace = true }
futures = { workspace = true }
http = "1.1.0"
hyper = { version = "1.4.1", features = ["client", "http1"] }
hyper-util = { workspace = true}
hyper-util = { workspace = true }
http-body-util = "0.1.2"
tower = { workspace = true }
ipnetwork = { workspace = true }
log = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true, features = ["macros", "time", "rt-multi-thread", "net", "io-std", "io-util", "fs"] }
tokio-rustls = { version = "0.26.0", features = ["logging", "tls12", "ring"], default-features = false}
tokio = { workspace = true, features = [
"macros",
"time",
"rt-multi-thread",
"net",
"io-std",
"io-util",
"fs",
] }
tokio-rustls = { version = "0.26.0", features = [
"logging",
"tls12",
"ring",
], default-features = false }
tokio-socks = "0.5.1"
rustls-pemfile = "2.1.3"
uuid = { version = "1.4.1", features = ["v4"] }
Expand All @@ -41,16 +53,16 @@ mullvad-types = { path = "../mullvad-types" }
talpid-types = { path = "../talpid-types" }
talpid-time = { path = "../talpid-time" }

shadowsocks = { workspace = true, features = [ "stream-cipher" ] }
shadowsocks = { workspace = true, features = ["stream-cipher"] }

[dev-dependencies]
talpid-time = { path = "../talpid-time", features = ["test"] }
tokio = { workspace = true, features = ["test-util", "time"] }
mockito = "1.6.1"

[build-dependencies]
cbindgen = { version = "0.24.3", default-features = false }
cbindgen = { version = "0.28.0", default-features = false }

[lib]
crate-type = [ "rlib", "staticlib" ]
crate-type = ["rlib", "staticlib"]
bench = false
2 changes: 1 addition & 1 deletion mullvad-ios/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ shadowsocks-service = { workspace = true, features = [
] }

[target.'cfg(target_os = "macos")'.build-dependencies]
cbindgen = { version = "0.27.0", default-features = false }
cbindgen = { version = "0.28.0", default-features = false }

[lib]
crate-type = ["staticlib"]
Expand Down
57 changes: 50 additions & 7 deletions test/Cargo.lock

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

0 comments on commit 99b9393

Please sign in to comment.