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 @@ -101,7 +101,7 @@ regex = "1.12"

serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_valid = { version = "0.16", optional = true }
serde_valid = { version = "2.0", optional = true }

validator = { version = "0.20", features = ["derive"] }

Expand All @@ -119,8 +119,8 @@ uuid = { version = "1.18.0", features = ["serde", "v4"]}
# Common between server and client features
bytes = "1.11"
http-body-util = "0.1.3"
hyper = { version = "1.6", features = ["full"], optional = true }
hyper-util = { version = "0.1.17", features = ["service"] }
hyper = { version = "1.8", features = ["full"], optional = true }
hyper-util = { version = "0.1.18", features = ["service"] }
{{#apiUsesMultipartRelated}}
mime_multipart = { version = "0.10", optional = true, package = "mime-multipart-hyper1" }
{{/apiUsesMultipartRelated}}
Expand All @@ -138,14 +138,14 @@ tower-service = "0.3.3"
lazy_static = { version = "1.5", optional = true }
regex = { version = "1.12", optional = true }
{{/apiUsesByteArray}}
percent-encoding = { version = "2.3.1", optional = true }
percent-encoding = { version = "2.3.2", 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.48", features = ["rt-multi-thread", "macros"], optional = true }
tokio = { version = "1.49", features = ["rt-multi-thread", "macros"], optional = true }
{{#apiHasDeleteMethods}}
dialoguer = { version = "0.12", optional = true }
{{/apiHasDeleteMethods}}
Expand All @@ -161,12 +161,12 @@ frunk-enum-core = { version = "0.3.0", optional = true }
always_send = "0.1.1"
clap = "4.5"
env_logger = "0.11"
tokio = { version = "1.48", features = ["full"] }
tokio = { version = "1.49", features = ["full"] }
native-tls = "0.2"
pin-project = "1.1.10"

# Bearer authentication, used in examples
jsonwebtoken = "9.3.1"
jsonwebtoken = {version = "10.0.0", features = ["rust_crypto"]}

[target.'cfg(not(any(target_os = "macos", target_os = "windows", target_os = "ios")))'.dev-dependencies]
tokio-openssl = "0.6"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ regex = "1.12"

serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_valid = { version = "0.16", optional = true }
serde_valid = { version = "2.0", optional = true }

validator = { version = "0.20", features = ["derive"] }

Expand All @@ -63,8 +63,8 @@ multipart = { version = "0.18", default-features = false, optional = true }
# Common between server and client features
bytes = "1.11"
http-body-util = "0.1.3"
hyper = { version = "1.6", features = ["full"], optional = true }
hyper-util = { version = "0.1.17", features = ["service"] }
hyper = { version = "1.8", features = ["full"], optional = true }
hyper-util = { version = "0.1.18", features = ["service"] }
mime_multipart = { version = "0.10", optional = true, package = "mime-multipart-hyper1" }
serde_ignored = { version = "0.1.14", optional = true }
url = { version = "2.5", optional = true }
Expand All @@ -73,14 +73,14 @@ url = { version = "2.5", optional = true }
tower-service = "0.3.3"

# Server, and client callback-specific
percent-encoding = { version = "2.3.1", optional = true }
percent-encoding = { version = "2.3.2", 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.48", features = ["rt-multi-thread", "macros"], optional = true }
tokio = { version = "1.49", features = ["rt-multi-thread", "macros"], optional = true }

# Conversion
frunk = { version = "0.4.3", optional = true }
Expand All @@ -93,12 +93,12 @@ frunk-enum-core = { version = "0.3.0", optional = true }
always_send = "0.1.1"
clap = "4.5"
env_logger = "0.11"
tokio = { version = "1.48", features = ["full"] }
tokio = { version = "1.49", features = ["full"] }
native-tls = "0.2"
pin-project = "1.1.10"

# Bearer authentication, used in examples
jsonwebtoken = "9.3.1"
jsonwebtoken = {version = "10.0.0", features = ["rust_crypto"]}

[target.'cfg(not(any(target_os = "macos", target_os = "windows", target_os = "ios")))'.dev-dependencies]
tokio-openssl = "0.6"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ mockall = { version = "0.13.1", optional = true }

serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_valid = { version = "0.16", optional = true }
serde_valid = { version = "2.0", optional = true }

validator = { version = "0.20", features = ["derive"] }

Expand All @@ -56,8 +56,8 @@ validator = { version = "0.20", features = ["derive"] }
# Common between server and client features
bytes = "1.11"
http-body-util = "0.1.3"
hyper = { version = "1.6", features = ["full"], optional = true }
hyper-util = { version = "0.1.17", features = ["service"] }
hyper = { version = "1.8", features = ["full"], optional = true }
hyper-util = { version = "0.1.18", features = ["service"] }
serde_ignored = { version = "0.1.14", optional = true }
url = { version = "2.5", optional = true }

Expand All @@ -67,14 +67,14 @@ tower-service = "0.3.3"
# Server, and client callback-specific
lazy_static = { version = "1.5", optional = true }
regex = { version = "1.12", optional = true }
percent-encoding = { version = "2.3.1", optional = true }
percent-encoding = { version = "2.3.2", 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.48", features = ["rt-multi-thread", "macros"], optional = true }
tokio = { version = "1.49", features = ["rt-multi-thread", "macros"], optional = true }

# Conversion
frunk = { version = "0.4.3", optional = true }
Expand All @@ -87,12 +87,12 @@ frunk-enum-core = { version = "0.3.0", optional = true }
always_send = "0.1.1"
clap = "4.5"
env_logger = "0.11"
tokio = { version = "1.48", features = ["full"] }
tokio = { version = "1.49", features = ["full"] }
native-tls = "0.2"
pin-project = "1.1.10"

# Bearer authentication, used in examples
jsonwebtoken = "9.3.1"
jsonwebtoken = {version = "10.0.0", features = ["rust_crypto"]}

[target.'cfg(not(any(target_os = "macos", target_os = "windows", target_os = "ios")))'.dev-dependencies]
tokio-openssl = "0.6"
Expand Down
14 changes: 7 additions & 7 deletions samples/server/petstore/rust-server/output/openapi-v3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ regex = "1.12"

serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_valid = { version = "0.16", optional = true }
serde_valid = { version = "2.0", optional = true }

validator = { version = "0.20", features = ["derive"] }

Expand All @@ -63,8 +63,8 @@ uuid = { version = "1.18.0", features = ["serde", "v4"]}
# Common between server and client features
bytes = "1.11"
http-body-util = "0.1.3"
hyper = { version = "1.6", features = ["full"], optional = true }
hyper-util = { version = "0.1.17", features = ["service"] }
hyper = { version = "1.8", features = ["full"], optional = true }
hyper-util = { version = "0.1.18", features = ["service"] }
serde_ignored = { version = "0.1.14", optional = true }
url = { version = "2.5", optional = true }

Expand All @@ -73,14 +73,14 @@ serde_urlencoded = { version = "0.7.1", optional = true }
tower-service = "0.3.3"

# Server, and client callback-specific
percent-encoding = { version = "2.3.1", optional = true }
percent-encoding = { version = "2.3.2", 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.48", features = ["rt-multi-thread", "macros"], optional = true }
tokio = { version = "1.49", features = ["rt-multi-thread", "macros"], optional = true }

# Conversion
frunk = { version = "0.4.3", optional = true }
Expand All @@ -93,12 +93,12 @@ frunk-enum-core = { version = "0.3.0", optional = true }
always_send = "0.1.1"
clap = "4.5"
env_logger = "0.11"
tokio = { version = "1.48", features = ["full"] }
tokio = { version = "1.49", features = ["full"] }
native-tls = "0.2"
pin-project = "1.1.10"

# Bearer authentication, used in examples
jsonwebtoken = "9.3.1"
jsonwebtoken = {version = "10.0.0", features = ["rust_crypto"]}

[target.'cfg(not(any(target_os = "macos", target_os = "windows", target_os = "ios")))'.dev-dependencies]
tokio-openssl = "0.6"
Expand Down
14 changes: 7 additions & 7 deletions samples/server/petstore/rust-server/output/ops-v3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ mockall = { version = "0.13.1", optional = true }

serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_valid = { version = "0.16", optional = true }
serde_valid = { version = "2.0", optional = true }

validator = { version = "0.20", features = ["derive"] }

Expand All @@ -56,8 +56,8 @@ validator = { version = "0.20", features = ["derive"] }
# Common between server and client features
bytes = "1.11"
http-body-util = "0.1.3"
hyper = { version = "1.6", features = ["full"], optional = true }
hyper-util = { version = "0.1.17", features = ["service"] }
hyper = { version = "1.8", features = ["full"], optional = true }
hyper-util = { version = "0.1.18", features = ["service"] }
serde_ignored = { version = "0.1.14", optional = true }
url = { version = "2.5", optional = true }

Expand All @@ -67,14 +67,14 @@ tower-service = "0.3.3"
# Server, and client callback-specific
lazy_static = { version = "1.5", optional = true }
regex = { version = "1.12", optional = true }
percent-encoding = { version = "2.3.1", optional = true }
percent-encoding = { version = "2.3.2", 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.48", features = ["rt-multi-thread", "macros"], optional = true }
tokio = { version = "1.49", features = ["rt-multi-thread", "macros"], optional = true }

# Conversion
frunk = { version = "0.4.3", optional = true }
Expand All @@ -87,12 +87,12 @@ frunk-enum-core = { version = "0.3.0", optional = true }
always_send = "0.1.1"
clap = "4.5"
env_logger = "0.11"
tokio = { version = "1.48", features = ["full"] }
tokio = { version = "1.49", features = ["full"] }
native-tls = "0.2"
pin-project = "1.1.10"

# Bearer authentication, used in examples
jsonwebtoken = "9.3.1"
jsonwebtoken = {version = "10.0.0", features = ["rust_crypto"]}

[target.'cfg(not(any(target_os = "macos", target_os = "windows", target_os = "ios")))'.dev-dependencies]
tokio-openssl = "0.6"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ regex = "1.12"

serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_valid = { version = "0.16", optional = true }
serde_valid = { version = "2.0", optional = true }

validator = { version = "0.20", features = ["derive"] }

Expand All @@ -65,8 +65,8 @@ uuid = { version = "1.18.0", features = ["serde", "v4"]}
# Common between server and client features
bytes = "1.11"
http-body-util = "0.1.3"
hyper = { version = "1.6", features = ["full"], optional = true }
hyper-util = { version = "0.1.17", features = ["service"] }
hyper = { version = "1.8", features = ["full"], optional = true }
hyper-util = { version = "0.1.18", features = ["service"] }
serde_ignored = { version = "0.1.14", optional = true }
url = { version = "2.5", optional = true }

Expand All @@ -75,14 +75,14 @@ serde_urlencoded = { version = "0.7.1", optional = true }
tower-service = "0.3.3"

# Server, and client callback-specific
percent-encoding = { version = "2.3.1", optional = true }
percent-encoding = { version = "2.3.2", 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.48", features = ["rt-multi-thread", "macros"], optional = true }
tokio = { version = "1.49", features = ["rt-multi-thread", "macros"], optional = true }
dialoguer = { version = "0.12", optional = true }

# Conversion
Expand All @@ -96,12 +96,12 @@ frunk-enum-core = { version = "0.3.0", optional = true }
always_send = "0.1.1"
clap = "4.5"
env_logger = "0.11"
tokio = { version = "1.48", features = ["full"] }
tokio = { version = "1.49", features = ["full"] }
native-tls = "0.2"
pin-project = "1.1.10"

# Bearer authentication, used in examples
jsonwebtoken = "9.3.1"
jsonwebtoken = {version = "10.0.0", features = ["rust_crypto"]}

[target.'cfg(not(any(target_os = "macos", target_os = "windows", target_os = "ios")))'.dev-dependencies]
tokio-openssl = "0.6"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ mockall = { version = "0.13.1", optional = true }

serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_valid = { version = "0.16", optional = true }
serde_valid = { version = "2.0", optional = true }

validator = { version = "0.20", features = ["derive"] }

Expand All @@ -56,8 +56,8 @@ validator = { version = "0.20", features = ["derive"] }
# Common between server and client features
bytes = "1.11"
http-body-util = "0.1.3"
hyper = { version = "1.6", features = ["full"], optional = true }
hyper-util = { version = "0.1.17", features = ["service"] }
hyper = { version = "1.8", features = ["full"], optional = true }
hyper-util = { version = "0.1.18", features = ["service"] }
serde_ignored = { version = "0.1.14", optional = true }
url = { version = "2.5", optional = true }

Expand All @@ -67,14 +67,14 @@ tower-service = "0.3.3"
# Server, and client callback-specific
lazy_static = { version = "1.5", optional = true }
regex = { version = "1.12", optional = true }
percent-encoding = { version = "2.3.1", optional = true }
percent-encoding = { version = "2.3.2", 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.48", features = ["rt-multi-thread", "macros"], optional = true }
tokio = { version = "1.49", features = ["rt-multi-thread", "macros"], optional = true }

# Conversion
frunk = { version = "0.4.3", optional = true }
Expand All @@ -87,12 +87,12 @@ frunk-enum-core = { version = "0.3.0", optional = true }
always_send = "0.1.1"
clap = "4.5"
env_logger = "0.11"
tokio = { version = "1.48", features = ["full"] }
tokio = { version = "1.49", features = ["full"] }
native-tls = "0.2"
pin-project = "1.1.10"

# Bearer authentication, used in examples
jsonwebtoken = "9.3.1"
jsonwebtoken = {version = "10.0.0", features = ["rust_crypto"]}

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