Skip to content

Commit

Permalink
feat: adding Hashable conformance to IterationValue (HdrHistogram#11)
Browse files Browse the repository at this point in the history
Adds Hashable conformance to IterationValue. Resolves HdrHistogram#4
  • Loading branch information
dimlio committed Mar 10, 2023
2 parents e9214c5 + 0e53eb5 commit bc9fd1e
Show file tree
Hide file tree
Showing 6 changed files with 319 additions and 292 deletions.
25 changes: 15 additions & 10 deletions Package.swift
Expand Up @@ -7,20 +7,22 @@ let package = Package(
name: "package-histogram",
platforms: [
// specify each minimum deployment requirement,
//otherwise the platform default minimum is used.
.macOS(.v10_15),
.iOS(.v13),
.tvOS(.v13),
.watchOS(.v6)
// otherwise the platform default minimum is used.
.macOS(.v10_15),
.iOS(.v13),
.tvOS(.v13),
.watchOS(.v6)
],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
name: "Histogram",
targets: ["Histogram"]),
targets: ["Histogram"]
),
.executable(
name: "HistogramExample",
targets: ["HistogramExample"]),
targets: ["HistogramExample"]
),
],
dependencies: [
// Dependencies declare other packages that this package depends on.
Expand All @@ -34,15 +36,18 @@ let package = Package(
name: "Histogram",
dependencies: [
.product(name: "Numerics", package: "swift-numerics"),
]),
]
),
.executableTarget(
name: "HistogramExample",
dependencies: ["Histogram"]),
dependencies: ["Histogram"]
),
.testTarget(
name: "HistogramTests",
dependencies: [
"Histogram",
.product(name: "Numerics", package: "swift-numerics"),
]),
]
),
]
)

0 comments on commit bc9fd1e

Please sign in to comment.