diff --git a/llrt_core/Cargo.toml b/llrt_core/Cargo.toml index fe974d44e2..3904e8fd2d 100644 --- a/llrt_core/Cargo.toml +++ b/llrt_core/Cargo.toml @@ -24,8 +24,8 @@ llrt_utils = { path = "../llrt_utils", features = ["all"] } chrono = { version = "0.4.38", default-features = false, features = ["std"] } quick-xml = "0.37.1" crc32c = { version = "0.6.8" } -crc32fast = "1.4.2" -phf = "0.11.2" +crc32fast = { version = "1.4.2" } +phf = { version = "0.11.2" } rquickjs = { version = "0.8.1", features = [ "full-async", "parallel", @@ -42,20 +42,20 @@ uuid = { version = "1.11.0", default-features = false, features = [ "v7", "fast-rng", ] } -once_cell = "1.20.2" +once_cell = { version = "1.20.2" } tracing-core = "0.1.33" -webpki = "0.22.4" +webpki = { version = "0.22.4" } async-trait = "0.1.83" zstd = { version = "0.13.2", default-features = false, features = [] } -libc = "0.2.167" -bytes = "1.9.0" +libc = { version = "0.2.167" } +bytes = { version = "1.9.0" } uuid-simd = "0.8.0" simd-json = { version = "0.14.3", default-features = false, features = [ "big-int-as-float", ] } -itoa = "1.0.14" -ryu = "1.0.18" -fxhash = "0.2.1" +itoa = { version = "1.0.14" } +ryu = { version = "1.0.18" } +fxhash = { version = "0.2.1" } hyper = { version = "1.5.1", features = ["client", "http1", "http2"] } hyper-rustls = { version = "0.27.3", default-features = false, features = [ "http2", @@ -71,14 +71,14 @@ rustls = { version = "0.23.19", default-features = false, features = [ "ring", ] } webpki-roots = "0.26.7" -ring = "0.17.8" -rand = "0.8.5" +ring = { version = "0.17.8" } +rand = { version = "0.8.5" } flate2 = { version = "1.0.35", features = [ "zlib-ng", ], default-features = false } -brotlic = "0.8.2" +brotlic = { version = "0.8.2" } rustls-pemfile = "2.2.0" -url = "2.5.4" +url = { version = "2.5.4" } [target.'cfg(target_os = "windows")'.dependencies] md-5 = { version = "0.10.6" } @@ -91,14 +91,14 @@ rquickjs = { version = "0.8.1", features = [ "rust-alloc", ], default-features = false } tokio = { version = "1", features = ["full"] } -phf_codegen = "0.11.2" -jwalk = "0.8.1" -nanoid = "0.4.0" +phf_codegen = { version = "0.11.2" } +jwalk = { version = "0.8.1" } +nanoid = { version = "0.4.0" } cargo-patch = "0.3.2" [dev-dependencies] -wiremock = "0.6.2" -criterion = "0.5.1" +wiremock = { version = "0.6.2" } +criterion = { version = "0.5.1" } [[bench]] name = "json" diff --git a/llrt_modules/Cargo.toml b/llrt_modules/Cargo.toml index ba1fa3173d..7ffcac05ad 100644 --- a/llrt_modules/Cargo.toml +++ b/llrt_modules/Cargo.toml @@ -3,7 +3,7 @@ name = "llrt_modules" description = "LLRT Modules for rquickjs" version = "0.2.0-beta" edition = "2021" -license = "Apache-2.0" +license-file = "LICENSE" repository = "https://github.com/awslabs/llrt" readme = "README.md" @@ -47,7 +47,7 @@ __bytearray-buffer = ["tokio/sync"] __stream = ["buffer", "__bytearray-buffer"] [dependencies] -either = "1" +either = { version = "1" } itoa = { version = "1", optional = true } once_cell = { version = "1", optional = true } llrt_utils = { version = "0.2.0-beta", path = "../llrt_utils", default-features = false, features = [ @@ -61,7 +61,7 @@ rquickjs = { version = "0.8", features = [ ], default-features = false } ring = { version = "0.17", optional = true } tokio = { version = "1", features = ["rt", "io-util"] } -tracing = "0.1" +tracing = { version = "0.1" } flate2 = { version = "1.0.35", features = [ "zlib-ng", ], default-features = false, optional = true } @@ -76,6 +76,6 @@ windows-result = { version = "0.2", optional = true } windows-version = { version = "0.1", optional = true } [dev-dependencies] -nanoid = "0.4.0" -rand = "0.8.5" +nanoid = { version = "0.4.0" } +rand = { version = "0.8.5" } tokio = { version = "1", features = ["full"] } diff --git a/llrt_utils/Cargo.toml b/llrt_utils/Cargo.toml index b0c473f65f..675766ce3f 100644 --- a/llrt_utils/Cargo.toml +++ b/llrt_utils/Cargo.toml @@ -3,7 +3,7 @@ name = "llrt_utils" description = "LLRT utilities" version = "0.2.0-beta" edition = "2021" -license = "Apache-2.0" +license-file = "LICENSE" repository = "https://github.com/awslabs/llrt" [features] @@ -21,7 +21,7 @@ rquickjs = { version = "0.8.1", features = [ "array-buffer", ], default-features = false } tokio = { version = "1", optional = true } -tracing = "0.1" +tracing = { version = "0.1" } phf = { version = "0.11.2", features = ["macros"], optional = true } [lints.rust]