Cargo.toml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. [package]
  2. name = "solang"
  3. version = "0.2.1"
  4. authors = ["Sean Young <sean@mess.org>", "Lucas Steuernagel <lucas.tnagel@gmail.com>", "Cyrill Leutwiler <bigcyrill@hotmail.com>"]
  5. homepage = "https://github.com/hyperledger/solang"
  6. documentation = "https://solang.readthedocs.io/"
  7. license = "Apache-2.0"
  8. build = "build.rs"
  9. description = "Solang Solidity Compiler"
  10. keywords = [ "solidity", "compiler", "solana", "substrate" ]
  11. rust-version = "1.63.0"
  12. edition = "2021"
  13. [build-dependencies]
  14. cc = "1.0"
  15. [dependencies]
  16. regex = "1"
  17. rand = "0.8"
  18. num-bigint = { version = "0.4", features = ["rand"]}
  19. num-traits = "0.2"
  20. num-integer = "0.1.44"
  21. parity-wasm = "0.45"
  22. clap = "4.0"
  23. clap_complete = "4.0"
  24. hex = "0.4"
  25. tiny-keccak = { version = "2.0", features = ["keccak"] }
  26. serde_json = "1.0"
  27. serde = "1.0"
  28. serde_derive = { version = "1.0" }
  29. inkwell = { version = "0.1.0-beta.5", features = ["target-webassembly", "target-bpf", "no-libffi-linking", "llvm14-0"], optional = true }
  30. blake2-rfc = "0.2.18"
  31. handlebars = "4.2"
  32. contract-metadata = "1.5.0"
  33. semver = { version = "^1.0.3", features = ["serde"] }
  34. tempfile = "3.3"
  35. libc = { version = "0.2", optional = true }
  36. tower-lsp = "0.17"
  37. tokio = { version = "1.16", features = ["rt", "io-std", "macros"] }
  38. base58 = "0.2.0"
  39. sha2 = "0.10"
  40. ripemd = "0.1"
  41. bitvec = "1"
  42. funty = "2.0"
  43. itertools = "0.10"
  44. num-rational = "0.4"
  45. indexmap = "1.8"
  46. once_cell = "1.16"
  47. solang-parser = { path = "solang-parser", version = "0.2.1" }
  48. codespan-reporting = "0.11"
  49. phf = { version = "0.11", features = ["macros"] }
  50. rust-lapper = "1.0"
  51. bitflags = "1.3"
  52. anchor-syn = { version = "0.26", features = ["idl"] }
  53. convert_case = "0.6"
  54. parse-display = "0.8.0"
  55. parity-scale-codec = "3.1"
  56. ink = "4.0.0-beta"
  57. scale-info = "2.3"
  58. [dev-dependencies]
  59. num-derive = "0.3"
  60. ethabi = { version = "18", features = ["parity-codec"] }
  61. wasmi = "0.11"
  62. # rand version 0.7 is needed for ed25519_dalek::keypair::generate, used in solana_tests/signature_verify.rs
  63. rand_07 = { package = "rand", version = "0.7" }
  64. sha2 = "0.10"
  65. # solana_rbpf makes api changes in patch versions
  66. solana_rbpf = "=0.2.33"
  67. byteorder = "1.4"
  68. assert_cmd = "2.0"
  69. bincode = "1.3"
  70. ed25519-dalek = "1.0"
  71. path-slash = "0.2"
  72. pretty_assertions = "1.2"
  73. byte-slice-cast = "1.2.1"
  74. borsh = "0.9.3"
  75. rayon = "1"
  76. [package.metadata.docs.rs]
  77. no-default-features = true
  78. [profile.release]
  79. lto = true
  80. [features]
  81. default = ["llvm"]
  82. llvm = ["inkwell", "libc"]
  83. [workspace]
  84. members = ["solang-parser"]