Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ openssl = { version = "0.10", optional = true }
async-trait = "0.1.88"
chrono = { version = "0.4", features = ["serde"] }
futures = "0.3"
swagger = { version = "7.0.0-rc2", features = ["serdejson", "server", "client", "tls"] }
swagger = { version = "7.0.0-rc3", features = ["serdejson", "server", "client", "tls"] }
headers = "0.4.0"
log = "0.4.27"
mime = "0.3"
Expand All @@ -100,39 +100,39 @@ serde-xml-rs = "0.8"
multipart = { version = "0.18", default-features = false, optional = true }
{{/apiUsesMultipartFormData}}
{{#apiUsesUuid}}
uuid = { version = "1.17.0", features = ["serde", "v4"]}
uuid = { version = "1.18.0", features = ["serde", "v4"]}
{{/apiUsesUuid}}

# Common between server and client features
bytes = "1.10.1"
http-body-util = "0.1.3"
hyper = { version = "1.6", features = ["full"], optional = true }
hyper-util = { version = "0.1.12", features = ["service"] }
hyper-util = { version = "0.1.17", features = ["service"] }
{{#apiUsesMultipartRelated}}
mime_multipart = { version = "0.10", optional = true, package = "mime-multipart-hyper1" }
{{/apiUsesMultipartRelated}}
serde_ignored = { version = "0.1.12", optional = true }
serde_ignored = { version = "0.1.14", optional = true }
url = { version = "2.5", optional = true }

# Client-specific
{{#usesUrlEncodedForm}}
serde_urlencoded = { version = "0.6.1", optional = true }
serde_urlencoded = { version = "0.7.1", optional = true }
{{/usesUrlEncodedForm}}
tower-service = "0.3.3"

# Server, and client callback-specific
lazy_static = { version = "1.5", optional = true }
percent-encoding = { version = "2.3.1", optional = true }
regex = { version = "1.11", optional = true }
regex = { version = "1.12", optional = true }

# CLI-specific
anyhow = { version = "1", optional = true }
clap = { version = "4.5", features = ["env"], optional = true }
clap-verbosity-flag = { version = "3.0", optional = true }
simple_logger = { version = "5.0", features = ["stderr"], optional = true }
tokio = { version = "1.45", features = ["rt-multi-thread", "macros"], optional = true }
tokio = { version = "1.48", features = ["rt-multi-thread", "macros"], optional = true }
{{#apiHasDeleteMethods}}
dialoguer = { version = "0.8", optional = true }
dialoguer = { version = "0.12", optional = true }
{{/apiHasDeleteMethods}}

# Conversion
Expand All @@ -142,17 +142,17 @@ frunk_core = { version = "0.4.3", optional = true }
frunk-enum-derive = { version = "0.3.0", optional = true }
frunk-enum-core = { version = "0.3.0", optional = true }

# Bearer authentication
jsonwebtoken = { version = "9.3.1", optional = false }

[dev-dependencies]
always_send = "0.1.1"
clap = "4.5"
env_logger = "0.11"
tokio = { version = "1.45", features = ["full"] }
tokio = { version = "1.48", features = ["full"] }
native-tls = "0.2"
pin-project = "1.1.10"

# Bearer authentication, used in examples
jsonwebtoken = "9.3.1"

[target.'cfg(not(any(target_os = "macos", target_os = "windows", target_os = "ios")))'.dev-dependencies]
tokio-openssl = "0.6"
openssl = "0.10"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ openssl = { version = "0.10", optional = true }
async-trait = "0.1.88"
chrono = { version = "0.4", features = ["serde"] }
futures = "0.3"
swagger = { version = "7.0.0-rc2", features = ["serdejson", "server", "client", "tls"] }
swagger = { version = "7.0.0-rc3", features = ["serdejson", "server", "client", "tls"] }
headers = "0.4.0"
log = "0.4.27"
mime = "0.3"
Expand All @@ -53,9 +53,9 @@ multipart = { version = "0.18", default-features = false, optional = true }
bytes = "1.10.1"
http-body-util = "0.1.3"
hyper = { version = "1.6", features = ["full"], optional = true }
hyper-util = { version = "0.1.12", features = ["service"] }
hyper-util = { version = "0.1.17", features = ["service"] }
mime_multipart = { version = "0.10", optional = true, package = "mime-multipart-hyper1" }
serde_ignored = { version = "0.1.12", optional = true }
serde_ignored = { version = "0.1.14", optional = true }
url = { version = "2.5", optional = true }

# Client-specific
Expand All @@ -64,14 +64,14 @@ tower-service = "0.3.3"
# Server, and client callback-specific
lazy_static = { version = "1.5", optional = true }
percent-encoding = { version = "2.3.1", optional = true }
regex = { version = "1.11", optional = true }
regex = { version = "1.12", optional = true }

# CLI-specific
anyhow = { version = "1", optional = true }
clap = { version = "4.5", features = ["env"], optional = true }
clap-verbosity-flag = { version = "3.0", optional = true }
simple_logger = { version = "5.0", features = ["stderr"], optional = true }
tokio = { version = "1.45", features = ["rt-multi-thread", "macros"], optional = true }
tokio = { version = "1.48", features = ["rt-multi-thread", "macros"], optional = true }

# Conversion
frunk = { version = "0.4.3", optional = true }
Expand All @@ -80,17 +80,17 @@ frunk_core = { version = "0.4.3", optional = true }
frunk-enum-derive = { version = "0.3.0", optional = true }
frunk-enum-core = { version = "0.3.0", optional = true }

# Bearer authentication
jsonwebtoken = { version = "9.3.1", optional = false }

[dev-dependencies]
always_send = "0.1.1"
clap = "4.5"
env_logger = "0.11"
tokio = { version = "1.45", features = ["full"] }
tokio = { version = "1.48", features = ["full"] }
native-tls = "0.2"
pin-project = "1.1.10"

# Bearer authentication, used in examples
jsonwebtoken = "9.3.1"

[target.'cfg(not(any(target_os = "macos", target_os = "windows", target_os = "ios")))'.dev-dependencies]
tokio-openssl = "0.6"
openssl = "0.10"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ openssl = { version = "0.10", optional = true }
async-trait = "0.1.88"
chrono = { version = "0.4", features = ["serde"] }
futures = "0.3"
swagger = { version = "7.0.0-rc2", features = ["serdejson", "server", "client", "tls"] }
swagger = { version = "7.0.0-rc3", features = ["serdejson", "server", "client", "tls"] }
headers = "0.4.0"
log = "0.4.27"
mime = "0.3"
Expand All @@ -48,8 +48,8 @@ validator = { version = "0.20", features = ["derive"] }
bytes = "1.10.1"
http-body-util = "0.1.3"
hyper = { version = "1.6", features = ["full"], optional = true }
hyper-util = { version = "0.1.12", features = ["service"] }
serde_ignored = { version = "0.1.12", optional = true }
hyper-util = { version = "0.1.17", features = ["service"] }
serde_ignored = { version = "0.1.14", optional = true }
url = { version = "2.5", optional = true }

# Client-specific
Expand All @@ -58,14 +58,14 @@ tower-service = "0.3.3"
# Server, and client callback-specific
lazy_static = { version = "1.5", optional = true }
percent-encoding = { version = "2.3.1", optional = true }
regex = { version = "1.11", optional = true }
regex = { version = "1.12", optional = true }

# CLI-specific
anyhow = { version = "1", optional = true }
clap = { version = "4.5", features = ["env"], optional = true }
clap-verbosity-flag = { version = "3.0", optional = true }
simple_logger = { version = "5.0", features = ["stderr"], optional = true }
tokio = { version = "1.45", features = ["rt-multi-thread", "macros"], optional = true }
tokio = { version = "1.48", features = ["rt-multi-thread", "macros"], optional = true }

# Conversion
frunk = { version = "0.4.3", optional = true }
Expand All @@ -74,17 +74,17 @@ frunk_core = { version = "0.4.3", optional = true }
frunk-enum-derive = { version = "0.3.0", optional = true }
frunk-enum-core = { version = "0.3.0", optional = true }

# Bearer authentication
jsonwebtoken = { version = "9.3.1", optional = false }

[dev-dependencies]
always_send = "0.1.1"
clap = "4.5"
env_logger = "0.11"
tokio = { version = "1.45", features = ["full"] }
tokio = { version = "1.48", features = ["full"] }
native-tls = "0.2"
pin-project = "1.1.10"

# Bearer authentication, used in examples
jsonwebtoken = "9.3.1"

[target.'cfg(not(any(target_os = "macos", target_os = "windows", target_os = "ios")))'.dev-dependencies]
tokio-openssl = "0.6"
openssl = "0.10"
Expand Down
22 changes: 11 additions & 11 deletions samples/server/petstore/rust-server/output/openapi-v3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ openssl = { version = "0.10", optional = true }
async-trait = "0.1.88"
chrono = { version = "0.4", features = ["serde"] }
futures = "0.3"
swagger = { version = "7.0.0-rc2", features = ["serdejson", "server", "client", "tls"] }
swagger = { version = "7.0.0-rc3", features = ["serdejson", "server", "client", "tls"] }
headers = "0.4.0"
log = "0.4.27"
mime = "0.3"
Expand All @@ -47,31 +47,31 @@ validator = { version = "0.20", features = ["derive"] }

# Crates included if required by the API definition
serde-xml-rs = "0.8"
uuid = { version = "1.17.0", features = ["serde", "v4"]}
uuid = { version = "1.18.0", features = ["serde", "v4"]}

# Common between server and client features
bytes = "1.10.1"
http-body-util = "0.1.3"
hyper = { version = "1.6", features = ["full"], optional = true }
hyper-util = { version = "0.1.12", features = ["service"] }
serde_ignored = { version = "0.1.12", optional = true }
hyper-util = { version = "0.1.17", features = ["service"] }
serde_ignored = { version = "0.1.14", optional = true }
url = { version = "2.5", optional = true }

# Client-specific
serde_urlencoded = { version = "0.6.1", optional = true }
serde_urlencoded = { version = "0.7.1", optional = true }
tower-service = "0.3.3"

# Server, and client callback-specific
lazy_static = { version = "1.5", optional = true }
percent-encoding = { version = "2.3.1", optional = true }
regex = { version = "1.11", optional = true }
regex = { version = "1.12", optional = true }

# CLI-specific
anyhow = { version = "1", optional = true }
clap = { version = "4.5", features = ["env"], optional = true }
clap-verbosity-flag = { version = "3.0", optional = true }
simple_logger = { version = "5.0", features = ["stderr"], optional = true }
tokio = { version = "1.45", features = ["rt-multi-thread", "macros"], optional = true }
tokio = { version = "1.48", features = ["rt-multi-thread", "macros"], optional = true }

# Conversion
frunk = { version = "0.4.3", optional = true }
Expand All @@ -80,17 +80,17 @@ frunk_core = { version = "0.4.3", optional = true }
frunk-enum-derive = { version = "0.3.0", optional = true }
frunk-enum-core = { version = "0.3.0", optional = true }

# Bearer authentication
jsonwebtoken = { version = "9.3.1", optional = false }

[dev-dependencies]
always_send = "0.1.1"
clap = "4.5"
env_logger = "0.11"
tokio = { version = "1.45", features = ["full"] }
tokio = { version = "1.48", features = ["full"] }
native-tls = "0.2"
pin-project = "1.1.10"

# Bearer authentication, used in examples
jsonwebtoken = "9.3.1"

[target.'cfg(not(any(target_os = "macos", target_os = "windows", target_os = "ios")))'.dev-dependencies]
tokio-openssl = "0.6"
openssl = "0.10"
Expand Down
18 changes: 9 additions & 9 deletions samples/server/petstore/rust-server/output/ops-v3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ openssl = { version = "0.10", optional = true }
async-trait = "0.1.88"
chrono = { version = "0.4", features = ["serde"] }
futures = "0.3"
swagger = { version = "7.0.0-rc2", features = ["serdejson", "server", "client", "tls"] }
swagger = { version = "7.0.0-rc3", features = ["serdejson", "server", "client", "tls"] }
headers = "0.4.0"
log = "0.4.27"
mime = "0.3"
Expand All @@ -48,8 +48,8 @@ validator = { version = "0.20", features = ["derive"] }
bytes = "1.10.1"
http-body-util = "0.1.3"
hyper = { version = "1.6", features = ["full"], optional = true }
hyper-util = { version = "0.1.12", features = ["service"] }
serde_ignored = { version = "0.1.12", optional = true }
hyper-util = { version = "0.1.17", features = ["service"] }
serde_ignored = { version = "0.1.14", optional = true }
url = { version = "2.5", optional = true }

# Client-specific
Expand All @@ -58,14 +58,14 @@ tower-service = "0.3.3"
# Server, and client callback-specific
lazy_static = { version = "1.5", optional = true }
percent-encoding = { version = "2.3.1", optional = true }
regex = { version = "1.11", optional = true }
regex = { version = "1.12", optional = true }

# CLI-specific
anyhow = { version = "1", optional = true }
clap = { version = "4.5", features = ["env"], optional = true }
clap-verbosity-flag = { version = "3.0", optional = true }
simple_logger = { version = "5.0", features = ["stderr"], optional = true }
tokio = { version = "1.45", features = ["rt-multi-thread", "macros"], optional = true }
tokio = { version = "1.48", features = ["rt-multi-thread", "macros"], optional = true }

# Conversion
frunk = { version = "0.4.3", optional = true }
Expand All @@ -74,17 +74,17 @@ frunk_core = { version = "0.4.3", optional = true }
frunk-enum-derive = { version = "0.3.0", optional = true }
frunk-enum-core = { version = "0.3.0", optional = true }

# Bearer authentication
jsonwebtoken = { version = "9.3.1", optional = false }

[dev-dependencies]
always_send = "0.1.1"
clap = "4.5"
env_logger = "0.11"
tokio = { version = "1.45", features = ["full"] }
tokio = { version = "1.48", features = ["full"] }
native-tls = "0.2"
pin-project = "1.1.10"

# Bearer authentication, used in examples
jsonwebtoken = "9.3.1"

[target.'cfg(not(any(target_os = "macos", target_os = "windows", target_os = "ios")))'.dev-dependencies]
tokio-openssl = "0.6"
openssl = "0.10"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ openssl = { version = "0.10", optional = true }
async-trait = "0.1.88"
chrono = { version = "0.4", features = ["serde"] }
futures = "0.3"
swagger = { version = "7.0.0-rc2", features = ["serdejson", "server", "client", "tls"] }
swagger = { version = "7.0.0-rc3", features = ["serdejson", "server", "client", "tls"] }
headers = "0.4.0"
log = "0.4.27"
mime = "0.3"
Expand All @@ -49,32 +49,32 @@ validator = { version = "0.20", features = ["derive"] }
# Crates included if required by the API definition
serde-xml-rs = "0.8"
multipart = { version = "0.18", default-features = false, optional = true }
uuid = { version = "1.17.0", features = ["serde", "v4"]}
uuid = { version = "1.18.0", features = ["serde", "v4"]}

# Common between server and client features
bytes = "1.10.1"
http-body-util = "0.1.3"
hyper = { version = "1.6", features = ["full"], optional = true }
hyper-util = { version = "0.1.12", features = ["service"] }
serde_ignored = { version = "0.1.12", optional = true }
hyper-util = { version = "0.1.17", features = ["service"] }
serde_ignored = { version = "0.1.14", optional = true }
url = { version = "2.5", optional = true }

# Client-specific
serde_urlencoded = { version = "0.6.1", optional = true }
serde_urlencoded = { version = "0.7.1", optional = true }
tower-service = "0.3.3"

# Server, and client callback-specific
lazy_static = { version = "1.5", optional = true }
percent-encoding = { version = "2.3.1", optional = true }
regex = { version = "1.11", optional = true }
regex = { version = "1.12", optional = true }

# CLI-specific
anyhow = { version = "1", optional = true }
clap = { version = "4.5", features = ["env"], optional = true }
clap-verbosity-flag = { version = "3.0", optional = true }
simple_logger = { version = "5.0", features = ["stderr"], optional = true }
tokio = { version = "1.45", features = ["rt-multi-thread", "macros"], optional = true }
dialoguer = { version = "0.8", optional = true }
tokio = { version = "1.48", features = ["rt-multi-thread", "macros"], optional = true }
dialoguer = { version = "0.12", optional = true }

# Conversion
frunk = { version = "0.4.3", optional = true }
Expand All @@ -83,17 +83,17 @@ frunk_core = { version = "0.4.3", optional = true }
frunk-enum-derive = { version = "0.3.0", optional = true }
frunk-enum-core = { version = "0.3.0", optional = true }

# Bearer authentication
jsonwebtoken = { version = "9.3.1", optional = false }

[dev-dependencies]
always_send = "0.1.1"
clap = "4.5"
env_logger = "0.11"
tokio = { version = "1.45", features = ["full"] }
tokio = { version = "1.48", features = ["full"] }
native-tls = "0.2"
pin-project = "1.1.10"

# Bearer authentication, used in examples
jsonwebtoken = "9.3.1"

[target.'cfg(not(any(target_os = "macos", target_os = "windows", target_os = "ios")))'.dev-dependencies]
tokio-openssl = "0.6"
openssl = "0.10"
Expand Down
Loading
Loading