tangled
alpha
login
or
join now
blooym.dev
/
jacquard
forked from
nonbinary.computer/jacquard
0
fork
atom
A better Rust ATProto crate
0
fork
atom
overview
issues
pulls
pipelines
chore: update used reqwest features
blooym.dev
1 week ago
2f31f7a6
28df4706
verified
This commit was signed with the committer's
known signature
.
blooym.dev
SSH Key Fingerprint:
SHA256:RNhp+KqYXhCrvDFGjRx+Ab+8GcX7cKKqSZh9HTbdo+o=
+4
-4
3 changed files
expand all
collapse all
unified
split
crates
jacquard
Cargo.toml
jacquard-common
Cargo.toml
jacquard-lexgen
Cargo.toml
+2
-2
crates/jacquard-common/Cargo.toml
···
104
getrandom_02 = { package = "getrandom", version = "0.2", features = ["js"] }
105
regex-lite = "0.1"
106
#ring = { version = "0.17", features = ["wasm32_unknown_unknown_js"]}
107
-
reqwest = { workspace = true, optional = true, features = [ "json", "gzip", "rustls-tls-manual-roots"] }
108
tokio-tungstenite-wasm = { version = "0.4", features = [], optional = true }
109
110
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
111
-
reqwest = { workspace = true, optional = true, features = [ "http2", "gzip", "system-proxy", "rustls-tls"] }
112
tokio-util = { version = "0.7.16", features = ["io"], optional = true }
113
tokio-tungstenite-wasm = { version = "0.4", features = ["rustls-tls-native-roots"], optional = true }
114
···
104
getrandom_02 = { package = "getrandom", version = "0.2", features = ["js"] }
105
regex-lite = "0.1"
106
#ring = { version = "0.17", features = ["wasm32_unknown_unknown_js"]}
107
+
reqwest = { workspace = true, optional = true, features = [ "json", "gzip"] }
108
tokio-tungstenite-wasm = { version = "0.4", features = [], optional = true }
109
110
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
111
+
reqwest = { workspace = true, optional = true, features = [ "http2", "gzip", "system-proxy", "rustls"] }
112
tokio-util = { version = "0.7.16", features = ["io"], optional = true }
113
tokio-tungstenite-wasm = { version = "0.4", features = ["rustls-tls-native-roots"], optional = true }
114
+1
-1
crates/jacquard-lexgen/Cargo.toml
···
39
jacquard-lexicon = { version = "0.9", path = "../jacquard-lexicon" }
40
kdl = "6"
41
miette = { workspace = true, features = ["fancy"] }
42
-
reqwest = { workspace = true, features = ["json", "http2", "system-proxy", "rustls-tls"] }
43
serde.workspace = true
44
serde_json = { workspace = true, features = ["preserve_order"] }
45
syn.workspace = true
···
39
jacquard-lexicon = { version = "0.9", path = "../jacquard-lexicon" }
40
kdl = "6"
41
miette = { workspace = true, features = ["fancy"] }
42
+
reqwest = { workspace = true, features = ["json", "http2", "system-proxy", "rustls"] }
43
serde.workspace = true
44
serde_json = { workspace = true, features = ["preserve_order"] }
45
syn.workspace = true
+1
-1
crates/jacquard/Cargo.toml
···
164
reqwest = { workspace = true, features = [
165
"http2",
166
"gzip",
167
-
"rustls-tls",
168
] }
169
tokio = { workspace = true, features = ["macros", "rt-multi-thread", "fs"] }
170
regex = { workspace = true, default-features = false, features = ["std", "perf-literal", "unicode"] }
···
164
reqwest = { workspace = true, features = [
165
"http2",
166
"gzip",
167
+
"rustls",
168
] }
169
tokio = { workspace = true, features = ["macros", "rt-multi-thread", "fs"] }
170
regex = { workspace = true, default-features = false, features = ["std", "perf-literal", "unicode"] }