mirror of
https://github.com/RustPython/Parser.git
synced 2025-07-08 05:35:22 +00:00
0.3.0 (#92)
This commit is contained in:
parent
d09bce80e6
commit
a1e4336f70
6 changed files with 12 additions and 12 deletions
14
Cargo.toml
14
Cargo.toml
|
@ -1,5 +1,5 @@
|
|||
[workspace.package]
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
authors = ["RustPython Team"]
|
||||
edition = "2021"
|
||||
rust-version = "1.67.1"
|
||||
|
@ -16,12 +16,12 @@ members = [
|
|||
]
|
||||
|
||||
[workspace.dependencies]
|
||||
rustpython-parser-vendored = { path = "vendored" }
|
||||
rustpython-ast = { path = "ast", default-features = false }
|
||||
rustpython-parser-core = { path = "core", features = [] }
|
||||
rustpython-literal = { path = "literal" }
|
||||
rustpython-format = { path = "format" }
|
||||
rustpython-parser = { path = "parser", default-features = false }
|
||||
rustpython-parser-vendored = { path = "vendored", version = "0.3.0" }
|
||||
rustpython-ast = { path = "ast", default-features = false, version = "0.3.0" }
|
||||
rustpython-parser-core = { path = "core", features = [], version = "0.3.0" }
|
||||
rustpython-literal = { path = "literal", version = "0.3.0" }
|
||||
rustpython-format = { path = "format", version = "0.3.0" }
|
||||
rustpython-parser = { path = "parser", default-features = false, version = "0.3.0" }
|
||||
|
||||
ahash = "0.7.6"
|
||||
anyhow = "1.0.45"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "rustpython-ast"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
description = "AST definitions for RustPython"
|
||||
authors = ["RustPython Team"]
|
||||
edition = "2021"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "rustpython-parser-core"
|
||||
description = "RustPython parser data types."
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
authors = ["RustPython Team"]
|
||||
edition = "2021"
|
||||
repository = "https://github.com/RustPython/Parser/"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "rustpython-format"
|
||||
edition = "2021"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
description = "Format helpers for RustPython"
|
||||
authors = ["RustPython Team"]
|
||||
repository = "https://github.com/RustPython/Parser/"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "rustpython-literal"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
description = "Common literal handling utilities mostly useful for unparse and repr."
|
||||
authors = ["RustPython Team"]
|
||||
edition = "2021"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "rustpython-parser"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
description = "Parser for python code."
|
||||
authors = ["RustPython Team"]
|
||||
build = "build.rs"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue