atsds 0.0.3-alpha5 → 0.0.3-alpha7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +26 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -44,6 +44,32 @@ Requires Python 3.10-3.14.
44
44
 
45
45
  The C++ library is the core implementation. Both Python and TypeScript bindings are built on top of it.
46
46
 
47
+ #### Using vcpkg
48
+
49
+ Clone the repository and use the overlay port:
50
+
51
+ ```bash
52
+ git clone https://github.com/USTC-KnowledgeComputingLab/ds.git
53
+ vcpkg install ds --overlay-ports=./ds/ports
54
+ ```
55
+
56
+ Add to your `vcpkg.json`:
57
+
58
+ ```json
59
+ {
60
+ "dependencies": ["ds"]
61
+ }
62
+ ```
63
+
64
+ In your CMakeLists.txt:
65
+
66
+ ```cmake
67
+ find_package(ds CONFIG REQUIRED)
68
+ target_link_libraries(your_target PRIVATE ds::ds)
69
+ ```
70
+
71
+ #### Building from Source
72
+
47
73
  ```bash
48
74
  git clone https://github.com/USTC-KnowledgeComputingLab/ds.git
49
75
  cd ds
package/package.json CHANGED
@@ -38,10 +38,10 @@
38
38
  "npm-run-all": "^4.1.5",
39
39
  "rollup": "^4.53.3",
40
40
  "rollup-plugin-dts": "^6.3.0",
41
- "ts-jest": "^29.4.5",
41
+ "ts-jest": "^29.4.6",
42
42
  "ts-node": "^10.9.2",
43
43
  "tslib": "^2.8.1",
44
44
  "typescript": "^5.9.3"
45
45
  },
46
- "version": "0.0.3-alpha5"
46
+ "version": "0.0.3-alpha7"
47
47
  }