-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Rust CLI improvements and HTTP lockfile example (#72)
* feat: combined CLI * refactor and add example http lock * http lock example * include `search/witness.json` * fix tests * clean up basic lock file
- Loading branch information
1 parent
5d6aac5
commit cc47938
Showing
19 changed files
with
227 additions
and
225 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
[package] | ||
name = "witness" | ||
name = "wpbuild" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
serde = { version = "1.0.204", features = ["derive"] } | ||
serde_json = "1.0.120" | ||
clap = { version = "4.5.14", features = ["derive"] } | ||
serde = { version = "1.0.209", features = ["derive"] } | ||
serde_json = "1.0.127" | ||
clap = { version = "4.5.16", features = ["derive"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"request": { | ||
"method": "GET", | ||
"target": "/api", | ||
"version": "HTTP/1.1", | ||
"headers": [ | ||
[ | ||
"Host", | ||
"localhost" | ||
], | ||
[ | ||
"Accept", | ||
"application/json" | ||
] | ||
] | ||
}, | ||
"response": { | ||
"version": "HTTP/1.1", | ||
"status": "200", | ||
"headers": [ | ||
[ | ||
"Content-Type", | ||
"application/json" | ||
] | ||
] | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.