This commit is contained in:
Jeong, YunWon 2023-08-30 00:04:44 +09:00 committed by GitHub
parent d09bce80e6
commit a1e4336f70
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 12 additions and 12 deletions

View file

@ -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"

View file

@ -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"

View file

@ -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/"

View file

@ -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/"

View file

@ -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"

View file

@ -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"