Skip to content

Commit

Permalink
..
Browse files Browse the repository at this point in the history
  • Loading branch information
hapeeeeee committed Apr 22, 2024
1 parent 489c8f3 commit 7062111
Show file tree
Hide file tree
Showing 32 changed files with 20,441 additions and 359 deletions.
2,671 changes: 2,368 additions & 303 deletions Cargo.lock

Large diffs are not rendered by default.

20 changes: 9 additions & 11 deletions language/move-analyzer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,6 @@ tempfile = "3.2.0"
url = "2.2.2"
clap = { version = "3.1.8", features = ["derive"] }
crossbeam = "0.8"
move-command-line-common = { git = "https://github.com/MystenLabs/sui.git", rev = "6e1cf7a1a9971fedd8b7830e586029d6c2cf801a", package = "move-command-line-common" }
move-ir-types = { git = "https://github.com/MystenLabs/sui.git", rev = "6e1cf7a1a9971fedd8b7830e586029d6c2cf801a", package = "move-ir-types" }
move-compiler = { git = "https://github.com/MystenLabs/sui.git", rev = "6e1cf7a1a9971fedd8b7830e586029d6c2cf801a", package = "move-compiler" }
move-package = { git = "https://github.com/MystenLabs/sui.git", rev = "6e1cf7a1a9971fedd8b7830e586029d6c2cf801a", package = "move-package" }
move-symbol-pool = { git = "https://github.com/MystenLabs/sui.git", rev = "6e1cf7a1a9971fedd8b7830e586029d6c2cf801a", package = "move-symbol-pool" }
move-core-types = { git = "https://github.com/MystenLabs/sui.git", rev = "6e1cf7a1a9971fedd8b7830e586029d6c2cf801a", package = "move-core-types" }
move-cli = { git = "https://github.com/MystenLabs/sui.git", rev = "6e1cf7a1a9971fedd8b7830e586029d6c2cf801a", package = "move-cli" }
move-model = { git = "https://github.com/MystenLabs/sui.git", rev = "6e1cf7a1a9971fedd8b7830e586029d6c2cf801a", package = "move-model" }
sui-move-build= { git = "https://github.com/MystenLabs/sui.git", rev = "6e1cf7a1a9971fedd8b7830e586029d6c2cf801a", package = "sui-move-build" }
move-proc-macros= { git = "https://github.com/MystenLabs/sui.git", rev = "6e1cf7a1a9971fedd8b7830e586029d6c2cf801a", package = "move-proc-macros" }
walkdir = "2"
log = "0.4.14"
stderrlog = "0.5.4"
Expand All @@ -48,7 +38,15 @@ stacker = "0.1.15"

# different version of sui compliler
beta-2024 = {path = "src/beta-2024"}
# alpha-2024 = {path = "src/alpha-2024"}
# move-symbol-pool-beta-2024 = { git = "https://github.com/MystenLabs/sui.git", rev = "6e1cf7a1a9971fedd8b7830e586029d6c2cf801a", package = "move-symbol-pool" }
# move-compiler-beta-2024 = { git = "https://github.com/MystenLabs/sui.git", rev = "6e1cf7a1a9971fedd8b7830e586029d6c2cf801a", package = "move-compiler" }

alpha-2024 = {path = "src/alpha-2024"}
# move-symbol-pool-alpha-2024 = { git = "https://github.com/movebit/sui", rev = "6b2e1bcd6d569b2d689fab3379d093b0cc451213", package = "move-symbol-pool" }
# move-compiler-alpha-2024 = { git = "https://github.com/movebit/sui", rev = "6b2e1bcd6d569b2d689fab3379d093b0cc451213", package = "move-compiler" }




[target.'cfg(not(target_os= "windows"))'.dependencies]
pprof = { version = "0.11.0" , features = ["flamegraph" , "protobuf"]}
Expand Down
61 changes: 61 additions & 0 deletions language/move-analyzer/src/alpha-2024/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
[package]
name = "alpha-2024"
version = "1.1.3"
authors = ["Diem Association <[email protected]>"]
description = "A language server for Move"
repository = "https://github.com/move-language/move"
license = "Apache-2.0"
publish = false
edition = "2021"

[lib]
name = "alpha_2024"
path = "src/lib.rs"

[dependencies]
dirs-next = "2.0.0"
once_cell = "1.7.2"
cfg-if = "1.0.0"
wait-timeout = "0.2.0"
regex = "1.5.5"
bisection = "0.1.0"
codespan = "0.11.1"
anyhow = "1.0.52"
codespan-reporting = "0.11.1"
derivative = "2.2.0"
dunce = "1.0.2"
im = "15.1.0"
lsp-server = "0.7.0"
lsp-types = "0.94.0"
petgraph = "0.5.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.64"
tempfile = "3.2.0"
url = "2.2.2"
clap = { version = "3.1.8", features = ["derive"] }
crossbeam = "0.8"
move-command-line-common = { git = "https://github.com/movebit/sui", rev = "6b2e1bcd6d569b2d689fab3379d093b0cc451213", package = "move-command-line-common" }
move-ir-types = { git = "https://github.com/movebit/sui", rev = "6b2e1bcd6d569b2d689fab3379d093b0cc451213", package = "move-ir-types" }
move-compiler = { git = "https://github.com/movebit/sui", rev = "6b2e1bcd6d569b2d689fab3379d093b0cc451213", package = "move-compiler" }
move-package = { git = "https://github.com/movebit/sui", rev = "6b2e1bcd6d569b2d689fab3379d093b0cc451213", package = "move-package" }
move-symbol-pool = { git = "https://github.com/movebit/sui", rev = "6b2e1bcd6d569b2d689fab3379d093b0cc451213", package = "move-symbol-pool" }
move-core-types = { git = "https://github.com/movebit/sui", rev = "6b2e1bcd6d569b2d689fab3379d093b0cc451213", package = "move-core-types", features = ["address32"] }
move-cli = { git = "https://github.com/movebit/sui", rev = "6b2e1bcd6d569b2d689fab3379d093b0cc451213", package = "move-cli" }
move-model = { git = "https://github.com/movebit/sui", rev = "6b2e1bcd6d569b2d689fab3379d093b0cc451213", package = "move-model" }
sui-move-build= { git = "https://github.com/movebit/sui", rev = "6b2e1bcd6d569b2d689fab3379d093b0cc451213", package = "sui-move-build" }

walkdir = "2"
log = "0.4.14"
stderrlog = "0.5.4"
enum-iterator = "1.2.0"

[target.'cfg(not(target_os= "windows"))'.dependencies]
pprof = { version = "0.11.0" , features = ["flamegraph" , "protobuf"]}

[features]
aptos = []
sui = []
pprof = []

[dev-dependencies]
datatest-stable.workspace = true
Loading

0 comments on commit 7062111

Please sign in to comment.