Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 4 additions & 12 deletions mcpp.toml
Original file line number Diff line number Diff line change
@@ -1,24 +1,16 @@
[package]
name = "mcpplibs.tinyhttps"
version = "0.2.0"
version = "0.2.2"
description = "Minimal C++23 HTTP/HTTPS client with SSE streaming support"
license = "Apache-2.0"
repo = "https://github.com/mcpplibs/tinyhttps"

[language]
standard = "c++23"
modules = true
import_std = true

[modules]
sources = ["src/**/*.cppm"]
exports = ["mcpplibs.tinyhttps"]

[targets.tinyhttps]
kind = "lib"

# mbedtls is the only runtime dep. xmake.lua used `add_packages("mbedtls", { public = true })`;
# the mcpp build picks up mbedtls's headers + libmbedtls.a transparently.
# mbedtls is the only runtime dep. mcpp 0.0.3's transitive walker pulls
# its headers + libmbedtls.a into anything that imports tinyhttps, so
# downstream projects (e.g. mcpplibs.llmapi) don't need to repeat it.
[dependencies]
mbedtls = "3.6.1"

Expand Down