Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,952 changes: 1,434 additions & 518 deletions Cargo.lock

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ members = [
]

[workspace.dependencies]
logos = "0.14"
logos = "0.16"
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
thiserror = "2"
tower-lsp = "0.20"
rustyline = "14"
colored = "2"
toml = "0.8"
rustyline = "18"
colored = "3"
toml = "1.1"
indexmap = "2"
clap_complete = "4"
6 changes: 3 additions & 3 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ anyhow = { workspace = true }
rustyline = { workspace = true }
toml = { workspace = true }
indexmap = { workspace = true }
bincode = "1.3"
dirs = "5.0"
bincode = "3.0"
dirs = "6.0"
num_cpus = "1.15"
ureq = { version = "2.0.0" }
ureq = { version = "3.3.0" }

[build-dependencies]
winres = "0.1.12"
Expand Down
4 changes: 2 additions & 2 deletions compiler/bytecode/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ techscript_syntax = { path = "../syntax" }
techscript_ast = { path = "../ast" }
techscript_ir = { path = "../ir" }
serde = { workspace = true }
bincode = "1.3"
bincode = "3.0"

[dev-dependencies]
techscript_errors = { path = "../errors" }
Expand All @@ -19,4 +19,4 @@ techscript_parser = { path = "../parser" }
techscript_semantic = { path = "../semantic" }
techscript_optimizer = { path = "../optimizer" }
serde = { workspace = true }
bincode = "1.3"
bincode = "3.0"
2 changes: 1 addition & 1 deletion compiler/llvm_backend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ techscript_common = { path = "../common" }
techscript_ir = { path = "../ir" }
techscript_ast = { path = "../ast" }
techscript_syntax = { path = "../syntax" }
llvm-sys = { version = "180", optional = true }
llvm-sys = { version = "221", optional = true }
serde = { workspace = true }
anyhow = { workspace = true }
thiserror = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion runtime/vm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ techscript_runtime = { path = "../runtime" }
techscript_builtins = { path = "../builtins" }
techscript_stdlib = { path = "../../stdlib" }
serde = { workspace = true }
bincode = "1.3"
bincode = "3.0"
thiserror = { workspace = true }
indexmap = "2.0"

Expand Down
24 changes: 12 additions & 12 deletions stdlib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,29 +9,29 @@ techscript_runtime = { path = "../runtime/runtime" }
serde_json = { workspace = true }
serde = { workspace = true }
indexmap = { version = "2", features = ["serde"] }
ureq = { version = "2.9", features = ["json"] }
ureq = { version = "3.3", features = ["json"] }
toml = { workspace = true }
rusqlite = { version = "0.31", features = ["bundled"] }
md5 = "0.7"
sha2 = "0.10"
rusqlite = { version = "0.40", features = ["bundled"] }
md5 = "0.8"
sha2 = "0.11"
sha-1 = "0.10"
aes-gcm = "0.10"
bcrypt = "0.15"
aes-gcm = "0.11"
bcrypt = "0.19"
zip = "2.1"
tar = "0.4"
flate2 = "1.0"
crc = "3.0"
image = "0.24"
image = "0.25"
tiny_http = "0.12"
rand = "0.8"
base64 = "0.22"
quick-xml = "0.31"
rand = "0.9"
base64 = "0.23"
quick-xml = "0.41"
qrcode = "0.14"
notify-rust = "4.10"
chrono = "0.4"
csv = "1.3"
calamine = "0.24"
printpdf = "0.7"
calamine = "0.36"
printpdf = "0.12"
uuid = { version = "1", features = ["v4"] }
rustls = { version = "0.23", optional = true }
tokio = { version = "1", features = ["rt", "macros", "sync", "time"], optional = true }
4 changes: 2 additions & 2 deletions tools/package-manager/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ description = "Dependency resolver and package manager registry client for TechS
[dependencies]
serde = { workspace = true }
serde_json = { workspace = true }
toml = "0.8"
toml = "1.1"
anyhow = { workspace = true }
ureq = { version = "2.9" }
ureq = { version = "3.3" }
4 changes: 2 additions & 2 deletions tools/packager/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ anyhow = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
toml = { workspace = true }
zip = "0.6"
zip = "2.4"
chrono = "0.4"
sha2 = "0.10"
sha2 = "0.11"
hex = "0.4"
Loading