Skip to content

Commit

Permalink
restinio: add version 0.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
gegles committed Dec 3, 2024
1 parent 6dea8d8 commit a5461bf
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
2 changes: 2 additions & 0 deletions recipes/restinio/config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
versions:
"0.7.3":
folder: "v0.7"
"0.7.2":
folder: "v0.7"
"0.7.1":
Expand Down
3 changes: 3 additions & 0 deletions recipes/restinio/v0.7/conandata.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
sources:
"0.7.3":
url: "https://github.com/Stiffstream/restinio/archive/v.0.7.3.tar.gz"
sha256: "6d9fcaf485bdd06d4a744896c6f0047d2c60914dcea3aabd9f476686f528b2f3"
"0.7.2":
url: "https://github.com/Stiffstream/restinio/archive/v.0.7.2.tar.gz"
sha256: "8d48dcf0e01a30562d7357f95048f43fa7c08db69eabef00540d60a3278523cb"
Expand Down
9 changes: 7 additions & 2 deletions recipes/restinio/v0.7/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,13 @@ def layout(self):

def requirements(self):
self.requires("llhttp/9.1.3")
self.requires("fmt/11.0.2")
self.requires("expected-lite/0.8.0")

if Version(self.version) >= "0.7.2":
self.requires("fmt/11.0.2")
self.requires("expected-lite/0.8.0")
else:
self.requires("fmt/10.2.1")
self.requires("expected-lite/0.6.3")

if self.options.asio == "standalone":
self.requires("asio/1.31.0")
Expand Down

0 comments on commit a5461bf

Please sign in to comment.