-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update dependencies and CI configuration
- Added concurrency control to GitHub Actions workflow - Removed redundant node setup for x86 in CI - Updated author information in Cargo.toml - Bumped versions of several dependencies in Cargo.toml - Changed TypeScript target to ESNext in tsconfig.json - Excluded __test__ directory in tsconfig.json Signed-off-by: Daniel Boll <[email protected]>
- Loading branch information
1 parent
1bd8d81
commit 2e6b0f4
Showing
3 changed files
with
12 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
[package] | ||
authors = ["Daniel Boll <[email protected]>"] | ||
edition = "2021" | ||
name = "scylladb-driver" | ||
version = "0.0.0" | ||
|
@@ -8,28 +9,28 @@ crate-type = ["cdylib"] | |
|
||
[dependencies] | ||
# Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix | ||
napi = { version = "2.13.3", default-features = false, features = [ | ||
napi = { version = "2", default-features = false, features = [ | ||
"napi8", | ||
"async", | ||
"serde", | ||
"serde_json", | ||
"serde-json", | ||
] } | ||
napi-derive = "2.13.0" | ||
napi-derive = "2" | ||
tokio = { version = "1", features = ["full"] } | ||
scylla = { version = "0.13.1", features = [ | ||
"ssl", | ||
"full-serialization", | ||
"cloud", | ||
] } | ||
uuid = { version = "1.4.1", features = ["serde", "v4", "fast-rng"] } | ||
uuid = { version = "1.10", features = ["serde", "v4", "fast-rng"] } | ||
serde_json = "1.0" | ||
serde = { version = "1.0", features = ["derive"] } | ||
openssl = { version = "0.10.66", features = ["vendored"] } | ||
|
||
[build-dependencies] | ||
napi-build = "2.0.1" | ||
napi-build = "2" | ||
|
||
[profile.release] | ||
lto = true | ||
|
||
codegen-units = 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters