Skip to content

Commit 2f9b7eb

Browse files
committed
publish 1.0.1 crates
1 parent ec4b622 commit 2f9b7eb

File tree

23 files changed

+51
-51
lines changed

23 files changed

+51
-51
lines changed

Cargo.lock

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ edition = "2021"
7979
tokio = { version = "1", features = ["macros"] }
8080
serde_json = { version = "1", features = ["raw_value"] }
8181
# Documentation: https://docs.rs/vercel_runtime/latest/vercel_runtime
82-
vercel_runtime = { version = "1.0.0" }
82+
vercel_runtime = { version = "1.0.1" }
8383

8484
# You can specify a library for shared logic here (optional)
8585
# [lib]

crates/vercel_runtime/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vercel_runtime"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
edition = "2021"
55
authors = ["Vercel <support@vercel.com>"]
66
description = "Vercel Rust Function Runtime"
@@ -31,7 +31,7 @@ tower-service = "0.3.2"
3131
base64 = "0.21.0"
3232
bytes = "1.4.0"
3333
async-trait = "0.1.66"
34-
# vercel_runtime_router = { version = "1.0.0", path = "../vercel_runtime_router" }
35-
# vercel_runtime_macro = { version = "1.0.0", path = "../vercel_runtime_macro" }
36-
vercel_runtime_router = "1.0.0"
37-
vercel_runtime_macro = "1.0.0"
34+
# vercel_runtime_router = { version = "1.0.1", path = "../vercel_runtime_router" }
35+
# vercel_runtime_macro = { version = "1.0.1", path = "../vercel_runtime_macro" }
36+
vercel_runtime_router = "1.0.1"
37+
vercel_runtime_macro = "1.0.1"

crates/vercel_runtime_macro/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vercel_runtime_macro"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
edition = "2021"
55
authors = ["Vercel <support@vercel.com>"]
66
description = "Vercel Rust Function Runtime Macro"
@@ -17,4 +17,4 @@ proc-macro = true
1717
glob = "0.3.1"
1818
quote = "1.0"
1919
syn = { version = "1.0", features = ["full"] }
20-
vercel_runtime_router = "1.0.0"
20+
vercel_runtime_router = "1.0.1"

crates/vercel_runtime_router/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vercel_runtime_router"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
edition = "2021"
55
authors = ["Vercel <support@vercel.com>"]
66
description = "Vercel Rust Function Runtime Router"

examples/cron/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ serde_derive = "1.0.9"
1414
rand = "0.8.5"
1515
slack-morphism = { version = "1.2.2", features = ["hyper"] }
1616
url = "2.3.1"
17-
# vercel_runtime = { version = "1.0.0", path = "../../crates/vercel_runtime" }
18-
vercel_runtime = "1.0.0"
17+
# vercel_runtime = { version = "1.0.1", path = "../../crates/vercel_runtime" }
18+
vercel_runtime = "1.0.1"
1919

2020
[[bin]]
2121
name = "cron"

examples/nextjs/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ serde_json = { version = "1.0.86", features = ["raw_value"] }
1313
serde_derive = "1.0.9"
1414
rand = "0.8.5"
1515
oorandom = "11.1.3"
16-
# vercel_runtime = { version = "1.0.0", path = "../../crates/vercel_runtime" }
17-
vercel_runtime = "1.0.0"
16+
# vercel_runtime = { version = "1.0.1", path = "../../crates/vercel_runtime" }
17+
vercel_runtime = "1.0.1"
1818

1919
[[bin]]
2020
name = "rust"

examples/route-merge/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ serde_json = { version = "1.0.86", features = ["raw_value"] }
1212
serde_derive = "1.0.9"
1313
rand = "0.8.5"
1414
url = "2.3.1"
15-
# vercel_runtime = { version = "1.0.0", path = "../../crates/vercel_runtime" }
16-
vercel_runtime = "1.0.0"
15+
# vercel_runtime = { version = "1.0.1", path = "../../crates/vercel_runtime" }
16+
vercel_runtime = "1.0.1"
1717

1818
[[bin]]
1919
name = "main"

examples/route-merge/vercel.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"functions": {
33
"api/main.rs": {
4-
"runtime": "vercel-rust@4.0.0"
4+
"runtime": "vercel-rust@4.0.1"
55
}
66
}
77
}

examples/simple/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ serde_json = { version = "1.0.86", features = ["raw_value"] }
1212
serde_derive = "1.0.9"
1313
rand = "0.8.5"
1414
url = "2.3.1"
15-
# vercel_runtime = { version = "1.0.0", path = "../../crates/vercel_runtime" }
16-
vercel_runtime = "1.0.0"
15+
# vercel_runtime = { version = "1.0.1", path = "../../crates/vercel_runtime" }
16+
vercel_runtime = "1.0.1"
1717

1818
[lib]
1919
path = "src-rs/lib.rs"

0 commit comments

Comments
 (0)