@@ -13,8 +13,8 @@ lazy val commonSettings = Seq(
13
13
scalaVersion := dottyVersion,
14
14
resolvers += Resolver .mavenLocal,
15
15
resolvers += " Sonatype OSS Snapshots" at " https://s01.oss.sonatype.org/content/repositories/snapshots" ,
16
- updateOptions := updateOptions.value.withLatestSnapshots(false ),
17
- libraryDependencies += " com.google.protobuf" % " protobuf-java" % " 3.21.9 " ,
16
+ updateOptions := updateOptions.value.withLatestSnapshots(false ),
17
+ libraryDependencies += " com.google.protobuf" % " protobuf-java" % " 3.21.10 " ,
18
18
scalacOptions ++= Seq (
19
19
" -explain" ,
20
20
" -explain-types" ,
@@ -25,7 +25,7 @@ lazy val commonSettings = Seq(
25
25
// "-release:19",
26
26
" -rewrite"
27
27
),
28
- versionPolicyIntention := Compatibility .BinaryCompatible , // As long as we are pre 1.0.0, BinaryCompatible for a patch version bump and None for a minor version bump
28
+ versionPolicyIntention := Compatibility .BinaryCompatible , // As long as we are pre 1.0.0, BinaryCompatible for a patch version bump and None for a minor version bump
29
29
versionScheme := Some (" early-semver" ),
30
30
// mimaPreviousArtifacts := Set("org.emergent-order" %%% "onnx-scala-common" % "0.17.0"),
31
31
autoCompilerPlugins := true
@@ -74,7 +74,7 @@ lazy val backends = (crossProject(JSPlatform, JVMPlatform, NativePlatform)
74
74
scalacOptions ++= Seq (" -source:3.2" ),
75
75
// mimaPreviousArtifacts := Set("org.emergent-order" %%% "onnx-scala-backends" % "0.17.0"),
76
76
libraryDependencies ++= Seq (
77
- " com.microsoft.onnxruntime" % " onnxruntime" % " 1.13.1" ,
77
+ " com.microsoft.onnxruntime" % " onnxruntime" % " 1.13.1"
78
78
// "com.microsoft.onnxruntime" % "onnxruntime-extensions" % "0.5.0"
79
79
),
80
80
libraryDependencies += (" org.scalatest" %%% " scalatest" % scalaTestVersion) % Test ,
@@ -88,12 +88,12 @@ lazy val backends = (crossProject(JSPlatform, JVMPlatform, NativePlatform)
88
88
webpackCliVersion := " 4.10.0" ,
89
89
startWebpackDevServer / version := " 4.11.1" ,
90
90
scalaJSUseMainModuleInitializer := true , // , //Testing
91
- Compile / npmDependencies += " onnxruntime-web" -> " 1.13.1" ,
91
+ Compile / npmDependencies += " onnxruntime-web" -> " 1.13.1" ,
92
92
Compile / npmDependencies += " onnxruntime-common" -> " 1.13.1" ,
93
93
Compile / npmDependencies += " typescript" -> " 4.8.4" ,
94
94
libraryDependencies += " org.typelevel" %%% " cats-effect-testing-scalatest" % " 1.5.0" % Test ,
95
95
stOutputPackage := " org.emergentorder.onnx" ,
96
- stShortModuleNames := true ,
96
+ stShortModuleNames := true ,
97
97
scalaJSStage := FullOptStage ,
98
98
scalaJSLinkerConfig ~= (_.withESFeatures(
99
99
_.withESVersion(org.scalajs.linker.interface.ESVersion .ES2021 )
0 commit comments