Skip to content

Commit 2d83b24

Browse files
committed
Build generated clients
1 parent 51db127 commit 2d83b24

39 files changed

+104
-24
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
target/
2+
3+
progenitor-impl/tests/output/Cargo.lock
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
[workspace]
2+
3+
[package]
4+
name = "test-output"
5+
version = "0.1.0"
6+
edition = "2021"
7+
8+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
9+
10+
[dependencies]
11+
base64 = "0.21"
12+
chrono = { version = "0.4", features = ["serde"] }
13+
clap = { version = "4", features = ["string"] }
14+
futures = "0.3"
15+
httpmock = "0.6"
16+
progenitor-client = { path = "../../../progenitor-client" }
17+
rand = { version = "0.8", features = ["serde1"] }
18+
regex = "1.10"
19+
regress = "0.7"
20+
reqwest = "0.11"
21+
schemars = { version = "0.8", features = ["chrono", "uuid1"] }
22+
serde = { features = ["derive"], version = "1" }
23+
serde_json = "1"
24+
uuid = { features = ["serde", "v4"], version = "1" }
25+
26+
[lints.rust]
27+
unused_imports = "allow"
28+
unused_variables= "allow"
29+
30+
[lints.clippy]
31+
needless_lifetimes = "allow"
32+
redundant_field_names = "allow"
33+
vec_init_then_push = "allow"
34+
clone_on_copy = "allow"
35+
unnecessary_to_owned = "allow"
36+
to_string_in_format_args = "allow"
37+
len_zero = "allow"
38+
ptr_arg = "allow"
39+
too_many_arguments = "allow"

progenitor-impl/tests/output/buildomat-cli.out renamed to progenitor-impl/tests/output/src/buildomat_cli.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use sdk::*;
1+
use crate::buildomat_builder::*;
22
pub struct Cli<T: CliOverride = ()> {
33
client: Client,
44
over: T,

progenitor-impl/tests/output/buildomat-httpmock.out renamed to progenitor-impl/tests/output/src/buildomat_httpmock.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ pub mod operations {
33
#![doc = r" wrappers for each operation. Each can be converted to"]
44
#![doc = r" its inner type with a call to `into_inner()`. This can"]
55
#![doc = r" be used to explicitly deviate from permitted values."]
6-
use sdk::*;
6+
use crate::buildomat_builder::*;
77
pub struct ControlHoldWhen(httpmock::When);
88
impl ControlHoldWhen {
99
pub fn new(inner: httpmock::When) -> Self {

progenitor-impl/tests/output/keeper-cli.out renamed to progenitor-impl/tests/output/src/keeper_cli.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use sdk::*;
1+
use crate::keeper_builder::*;
22
pub struct Cli<T: CliOverride = ()> {
33
client: Client,
44
over: T,

0 commit comments

Comments
 (0)