Skip to content

Commit 8d61993

Browse files
committed
fmt
1 parent d1d3241 commit 8d61993

File tree

4 files changed

+17
-4
lines changed

4 files changed

+17
-4
lines changed

examples/raw_identifiers/Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,7 @@ edition = "2021"
99
[dependencies]
1010
rocket = { workspace = true }
1111
serde = { workspace = true, features = ["derive"] }
12-
rocket_okapi = { path = "../../rocket-okapi", features = ["rapidoc", "swagger"] }
12+
rocket_okapi = { path = "../../rocket-okapi", features = [
13+
"rapidoc",
14+
"swagger",
15+
] }

examples/special-types/Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,8 @@ edition = "2021"
66

77
[dependencies]
88
rocket = { workspace = true }
9-
rocket_okapi = { path = "../../rocket-okapi", features = ["swagger", "rapidoc"] }
9+
rocket_okapi = { path = "../../rocket-okapi", features = [
10+
"swagger",
11+
"rapidoc",
12+
] }
1013
serde = { workspace = true, features = ["derive"] }

examples/streams/Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,8 @@ edition = "2021"
66

77
[dependencies]
88
rocket = { workspace = true }
9-
rocket_okapi = { path = "../../rocket-okapi", features = ["swagger", "rapidoc"] }
9+
rocket_okapi = { path = "../../rocket-okapi", features = [
10+
"swagger",
11+
"rapidoc",
12+
] }
1013
serde = { workspace = true, features = ["derive"] }

examples/uuid_usage/Cargo.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ edition = "2021"
1111
[dependencies]
1212
rocket = { workspace = true, features = ["json", "uuid"] }
1313
schemars = { workspace = true, features = ["uuid1"] }
14-
rocket_okapi = { path = "../../rocket-okapi", features = ["swagger", "rapidoc", "uuid"] }
14+
rocket_okapi = { path = "../../rocket-okapi", features = [
15+
"swagger",
16+
"rapidoc",
17+
"uuid",
18+
] }
1519
serde = { workspace = true, features = ["derive"] }
1620
uuid = { version = "1.1.1", features = ["v4"] }

0 commit comments

Comments
 (0)