We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e56513 commit 3bc8659Copy full SHA for 3bc8659
Cargo.toml
@@ -1,6 +1,6 @@
1
[package]
2
name = "multisql-cli"
3
-version = "0.1.0"
+version = "0.2.0"
4
authors = ["Kyran Gostelow <[email protected]>"]
5
edition = "2021"
6
description = "MultiSQL CLI"
@@ -10,7 +10,7 @@ repository = "https://github.com/KyGost/multisql-cli"
10
[dependencies]
11
dialoguer = "^0"
12
indicatif = "^0"
13
-multisql = "0.1.3"
+multisql = "0.2.0"
14
lazy_static = "^1"
15
console = "^0"
16
cli-table = "^0"
src/main.rs
@@ -19,7 +19,7 @@ lazy_static! {
19
fn main() {
20
let mut connection_file_path = dirs::home_dir().unwrap();
21
connection_file_path.push(".multisql-cli.yaml");
22
-
+
23
let mut connection_file = OpenOptions::new()
24
.read(true)
25
.write(true)
0 commit comments