Skip to content

Commit

Permalink
Fixing postman2openapi-cli version data.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinswiber committed Sep 14, 2023
1 parent 20d6535 commit 6fdd00b
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 1 addition & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,12 @@ repository = "https://github.com/kevinswiber/postman2openapi"
license = "Apache-2.0"
version = "1.1.0"
authors = ["Kevin Swiber <[email protected]>"]
build = "build.rs"
readme = "README.md"
documentation = "https://docs.rs/postman2openapi"
edition = "2021"

[workspace]
members = ["postman2openapi-cli"]
members = ["cli"]

[lib]
name = "postman2openapi"
Expand All @@ -31,9 +30,6 @@ serde_derive = "1.0"
serde_json = { version = "1.0", features = ["raw_value"]}
thiserror = "1.0"

[build-dependencies]
chrono = "0.4"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
serde_yaml = "0.9"

Expand Down
4 changes: 4 additions & 0 deletions postman2openapi-cli/Cargo.toml → cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,16 @@ repository = "https://github.com/kevinswiber/postman2openapi"
license = "Apache-2.0"
readme = "README.md"
documentation = "https://docs.rs/postman2openapi"
build = "build.rs"
edition = "2021"

[[bin]]
name = "postman2openapi"
path = "src/main.rs"

[build-dependencies]
chrono = "0.4"

[dependencies]
atty = "0.2"
clap = { version = "3.2", features = ["cargo"] }
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ build-web:
clippy:
cargo clippy -- -D warnings

test: test-lib test-unit test-integration test-wasm-node test-wasm-chrome test-wasm-firefox
test: build test-lib test-unit test-integration test-wasm-node test-wasm-chrome test-wasm-firefox

test-lib:
cargo test --lib
Expand Down

0 comments on commit 6fdd00b

Please sign in to comment.