Skip to content

Commit 0630169

Browse files
thomasballingerConvex, Inc.
authored andcommitted
Refactor workos client into new crate (#41673)
GitOrigin-RevId: 3feedbd152f9d04e1d9313505580ca9cc8c63e52
1 parent bfc27ad commit 0630169

File tree

3 files changed

+830
-0
lines changed

3 files changed

+830
-0
lines changed

Cargo.lock

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

crates/workos_client/Cargo.toml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
[package]
2+
name = "workos_client"
3+
version = "0.1.0"
4+
authors = ["Convex, Inc. <no-reply@convex.dev>"]
5+
edition = "2021"
6+
license = "LicenseRef-FSL-1.1-Apache-2.0"
7+
8+
[lib]
9+
doctest = false
10+
11+
[features]
12+
testing = ["common/testing", "errors/testing"]
13+
14+
[dependencies]
15+
anyhow = { workspace = true }
16+
async-trait = { workspace = true }
17+
common = { workspace = true }
18+
errors = { workspace = true }
19+
http = { workspace = true }
20+
oauth2 = { workspace = true }
21+
serde = { workspace = true }
22+
serde_json = { workspace = true }
23+
tokio = { workspace = true }
24+
25+
[dev-dependencies]
26+
common = { workspace = true, features = ["testing"] }
27+
errors = { workspace = true, features = ["testing"] }
28+
29+
[lints]
30+
workspace = true

0 commit comments

Comments
 (0)