Skip to content

Commit a0d8670

Browse files
committed
rust-cpython 0.0.2
1 parent 29693ee commit a0d8670

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

.cargo/config

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
paths = ["python27-sys", "python3-sys"]
2+

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22

33
name = "cpython"
4-
version = "0.0.1"
5-
description = "Bindings to Python 2.7"
4+
version = "0.0.2"
5+
description = "Bindings to Python"
66
authors = ["Daniel Grunwald <[email protected]>"]
77
readme = "README.md"
88
keywords = [
@@ -17,6 +17,8 @@ license = "MIT"
1717
exclude = [
1818
".gitignore",
1919
".travis.yml",
20+
"appveyor.yml",
21+
".cargo/config",
2022
"python27-sys",
2123
"python32-sys",
2224
]
@@ -31,12 +33,10 @@ abort_on_panic = "1.0"
3133
# These features are both optional, but you must pick one to
3234
# indicate which python ffi you are trying to bind to.
3335
[dependencies.python27-sys]
34-
path="python27-sys"
3536
optional = true
3637

3738
[dependencies.python3-sys]
38-
path = "python3-sys"
39-
optional = true
39+
optional = true
4040

4141
[features]
4242
default = ["python3-sys"]

python27-sys/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ keywords = [
88
"cpython",
99
"libpython27",
1010
]
11-
homepage = "https://github.com/dgrunwald/rust-python27-sys"
12-
repository = "https://github.com/dgrunwald/rust-python27-sys.git"
11+
homepage = "https://github.com/dgrunwald/rust-cpython/tree/master/python27-sys"
12+
repository = "https://github.com/dgrunwald/rust-cpython/tree/master/python27-sys"
1313
license = "Python-2.0"
1414
authors = ["Daniel Grunwald <[email protected]>"]
1515
links = "python27"

0 commit comments

Comments
 (0)