You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I'd love to see official support for Vapor for the TD SDK. I've created some wrappers to integrate with Application and Request, but looks like there's a compile issue when I try to deploy to Linux:
[97/926] Compiling TelemetryDeck CryptoHashing.swift
/tmp/build_5ea4ecc3/Backend/Bloom-Backend/.build/checkouts/SwiftSDK/Sources/TelemetryDeck/Helpers/CryptoHashing.swift:4:8: error: no such module 'CommonCrypto'
2 | import CryptoKit
3 | #endif
4 | import CommonCrypto
| `- error: no such module 'CommonCrypto'
5 | import Foundation
6 |
Here's the wrappers I've created in case you want to pick this up:
Apparently the recommended library for server side crypto is Apple's swift-crypto, but that has a minimum macOS version of 15 (compared to TD's 13). AFAIK there's no way to conditionally link to the library based on macOS version.
Hi, I'd love to see official support for Vapor for the TD SDK. I've created some wrappers to integrate with Application and Request, but looks like there's a compile issue when I try to deploy to Linux:
Here's the wrappers I've created in case you want to pick this up:
The text was updated successfully, but these errors were encountered: