Skip to content

Commit 3f05fc1

Browse files
committedDec 30, 2024
Prepare v1
Todo: determine what to do with internally tagged enum with schemars 1.0.0-alpha.17 behaviour
1 parent 073e18e commit 3f05fc1

File tree

105 files changed

+9021
-1512
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

105 files changed

+9021
-1512
lines changed
 

‎.github/workflows/draft.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
push:
55
branches:
66
- main
7+
- v1
8+
workflow_dispatch:
79

810
env:
911
CARGO_TERM_COLOR: always

‎Cargo.toml

+11-10
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,14 @@ edition = "2021"
2020
repository = "https://github.com/netwo-io/apistos"
2121
documentation = "https://docs.rs/apistos/"
2222
license = "MIT OR Apache-2.0"
23-
rust-version = "1.75"
23+
rust-version = "1.77"
2424
publish = true
25-
version = "0.4.2"
25+
version = "1.0.0-pre-release.9"
2626

2727
[workspace.dependencies]
2828
actix-service = "2"
2929
actix-web = "4"
30-
actix-web-grants = "4"
31-
actix-web-lab = "0.20"
30+
actix-web-lab = "0.22"
3231
assert-json-diff = "2.0.2"
3332
convert_case = "0.6"
3433
darling = "0.20"
@@ -41,22 +40,24 @@ md5 = "0.7.0"
4140
once_cell = "1"
4241
pin-project = "1"
4342
proc-macro2 = "1.0"
44-
proc-macro-error = "1.0"
43+
proc-macro-error2 = "2.0"
4544
quote = "1.0"
4645
regex = ">=1.5.5"
47-
schemars = { package = "apistos-schemars", version = "0.8", features = ["chrono", "uuid1", "url", "rust_decimal"] }
48-
serde = "1"
46+
schemars = { version = "=1.0.0-alpha.15", features = ["chrono04", "uuid1", "url2", "rust_decimal1"] }
47+
serde = { version = "1", features = ["derive"] }
4948
serde_json = "1"
5049
syn = "2.0"
5150

52-
actix-multipart = "0.6"
51+
actix-multipart = "0.7"
52+
actix-web-grants = "4"
5353
actix-session = "0.10"
54-
garde-actix-web = "0.9"
54+
garde-actix-web = "0.10"
5555
chrono = "0.4.20"
5656
garde = { version = "0.20", features = ["derive", "serde"] }
57+
ipnetwork = "0.20"
5758
rust_decimal = "1"
5859
serde_qs = "0.13"
59-
shuttle-runtime = { version = "0.46", default-features = false }
60+
shuttle-runtime = { version = "0.47", default-features = false }
6061
uuid = { version = "1", features = ["serde", "v4"] }
6162
url = "2"
6263

0 commit comments

Comments
 (0)