Skip to content

Commit e261e02

Browse files
committed
Api: Implement URLPattern
1 parent 8f07340 commit e261e02

File tree

8 files changed

+731
-3
lines changed

8 files changed

+731
-3
lines changed

Cargo.lock

+55
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

jstz_api/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,10 @@ serde = "1.0.188"
1919
serde_json = "1.0.107"
2020
tezos-smart-rollup = "0.2.1"
2121
url = "2.4.1"
22+
urlpattern = "0.2.0"
2223

2324
[dev-dependencies]
2425
anyhow = "1.0.75"
2526
expect-test = "1.4.1"
2627
jstz_wpt = { version = "0.1.0", path = "../jstz_wpt" }
27-
tokio = { version = "1.34.0", features = ["full"] }
28+
tokio = { version = "1.34.0", features = ["full"] }

jstz_api/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ mod kv;
44
pub mod http;
55
mod text_encoder;
66
pub mod url;
7+
pub mod urlpattern;
78
pub use console::ConsoleApi;
89
pub use kv::Kv;
910
pub use kv::KvApi;

0 commit comments

Comments
 (0)