|
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | <groupId>com.shipclojure</groupId> |
5 | 5 | <artifactId>voice-fn</artifactId> |
6 | | - <version>0.1.0-SNAPSHOT</version> |
| 6 | + <version>0.1.0-alfa</version> |
7 | 7 | <name>shipclojure/voice-fn</name> |
8 | 8 | <description>A Clojure framework for building real-time voice-enabled AI applications. voice-fn handles the orchestration of speech recognition, audio processing, and AI service integration with the elegance of functional programming.</description> |
9 | 9 | <url>https://github.com/shipclojure/voice-fn</url> |
|
22 | 22 | <url>https://github.com/shipclojure/voice-fn</url> |
23 | 23 | <connection>scm:git:git://github.com/shipclojure/voice-fn.git</connection> |
24 | 24 | <developerConnection>scm:git:ssh://git@github.com/shipclojure/voice-fn.git</developerConnection> |
25 | | - <tag>v0.1.0-SNAPSHOT</tag> |
| 25 | + <tag>v0.1.0-alfa</tag> |
26 | 26 | </scm> |
27 | 27 | <dependencies> |
| 28 | + <dependency> |
| 29 | + <groupId>com.microsoft.onnxruntime</groupId> |
| 30 | + <artifactId>onnxruntime_gpu</artifactId> |
| 31 | + <version>1.20.0</version> |
| 32 | + </dependency> |
28 | 33 | <dependency> |
29 | 34 | <groupId>org.clojure</groupId> |
30 | 35 | <artifactId>clojure</artifactId> |
31 | 36 | <version>1.12.0</version> |
32 | 37 | </dependency> |
| 38 | + <dependency> |
| 39 | + <groupId>hato</groupId> |
| 40 | + <artifactId>hato</artifactId> |
| 41 | + <version>1.0.0</version> |
| 42 | + </dependency> |
| 43 | + <dependency> |
| 44 | + <groupId>com.microsoft.onnxruntime</groupId> |
| 45 | + <artifactId>onnxruntime</artifactId> |
| 46 | + <version>1.20.0</version> |
| 47 | + </dependency> |
33 | 48 | <dependency> |
34 | 49 | <groupId>org.uncomplicate</groupId> |
35 | 50 | <artifactId>clojure-sound</artifactId> |
36 | 51 | <version>0.3.0</version> |
37 | 52 | </dependency> |
38 | 53 | <dependency> |
39 | | - <groupId>com.taoensso</groupId> |
40 | | - <artifactId>telemere</artifactId> |
41 | | - <version>1.0.0-RC1</version> |
42 | | - </dependency> |
43 | | - <dependency> |
44 | | - <groupId>org.clojure</groupId> |
45 | | - <artifactId>core.async</artifactId> |
46 | | - <version>1.7.701</version> |
| 54 | + <groupId>metosin</groupId> |
| 55 | + <artifactId>malli</artifactId> |
| 56 | + <version>0.17.0</version> |
47 | 57 | </dependency> |
48 | 58 | <dependency> |
49 | 59 | <groupId>metosin</groupId> |
50 | 60 | <artifactId>jsonista</artifactId> |
51 | 61 | <version>0.3.8</version> |
52 | 62 | </dependency> |
53 | 63 | <dependency> |
54 | | - <groupId>ring</groupId> |
55 | | - <artifactId>ring-core</artifactId> |
56 | | - <version>1.13.0</version> |
| 64 | + <groupId>org.clojure</groupId> |
| 65 | + <artifactId>java.data</artifactId> |
| 66 | + <version>1.2.107</version> |
| 67 | + </dependency> |
| 68 | + <dependency> |
| 69 | + <groupId>com.taoensso</groupId> |
| 70 | + <artifactId>telemere</artifactId> |
| 71 | + <version>1.0.0-RC1</version> |
57 | 72 | </dependency> |
58 | 73 | </dependencies> |
59 | 74 | <build> |
|
65 | 80 | <url>https://repo.clojars.org/</url> |
66 | 81 | </repository> |
67 | 82 | <repository> |
68 | | - <id>sonatype</id> |
69 | | - <url>https://oss.sonatype.org/content/repositories/snapshots/</url> |
| 83 | + <id>cognitect-dev-tools</id> |
| 84 | + <url>https://dev-tools.cognitect.com/maven/releases/</url> |
70 | 85 | </repository> |
71 | 86 | </repositories> |
72 | 87 | <distributionManagement> |
|
0 commit comments